프로퍼티 | 타입 | 설명 | |
---|---|---|---|
$auto_update_relations | (whilst developing this feature, will allow other elements to continue to work) | ||
$originalAttributes | |||
$relation_defaults | to be set when setting the left or right attribute of owning record. |
메소드 | 설명 | |
---|---|---|
NHSDate ( string $attribute, string $empty_string = '-' ) : string | Returns a date field in NHS format. | |
NHSDateAsHTML ( $attribute, string $empty_string = '-' ) : string | ||
__set ( string $name, mixed $value ) : mixed | void | If an array of arrays is passed for a HAS_MANY relation attribute, will create appropriate objects to assign to the attribute. Sets up the afterSave method to saves these objects if they have validated. | |
audit ( $target, $action, null $data = null, null $log_message = null, array $properties = [] ) | ||
canAutocomplete ( ) | ||
cloneObject ( $object, array $params = [] ) : mixed | ||
getAutocompleteField ( ) | ||
getCleanAttribute ( $attrName ) : string | Gets the clean version of an attribute, returns empty string if there was no clean version. | |
getRelationsDefaults ( $name ) : array | Convenience method wrapper on the relation defaults property. | |
getShortModelName ( ) : string | Shortened name of this model class, useful for namespaced modules. | |
isAttributeDirty ( $attrName ) : boolean | Checks if an attribute is dirty. | |
isModelDirty ( ) : boolean | Check if the model dirty. | |
model ( string $class_name = null ) | Override to use LSB. | |
save ( boolean $runValidation = true, array $attributes = null, boolean $allow_overriding = false ) : boolean | ||
saveOnlyIfDirty ( boolean $enable = true ) : BaseActiveRecord | Set the flag to indicate that model should only save to the db if the model is dirty. | |
tableName ( ) : string | Default to the lower case of the class to match naming convention for model tables. | |
textWithLineBreaks ( $field ) : mixed |
메소드 | 설명 | |
---|---|---|
afterFind ( ) | Stores the data in an array afterFind so when saving we can check if the value is dirty or not. | |
afterSave ( ) | Saves related objects now that we have a pk for the instance. | |
beforeDelete ( ) : boolean | Iterate through relations and remove the records that will break constraints. | |
beforeSave ( ) : boolean | Strips all html tags out of attributes to be saved. | |
setDefaultAdmissionTime ( $admissionTime, $startTime ) : boolean | string | Sets the default admission time. |
메소드 | 설명 | |
---|---|---|
afterSaveHasMany ( $name, $rel, $new_objs, $orig_objs ) | Save objects to the given relation. | |
afterSaveManyMany ( $name, CManyManyRelation $rel, $new_objs, $orig_objs ) | ||
afterSaveThruHasMany ( $name, $rel, $thru, $new_objs ) | Save the given objects for the through relation. |
public NHSDateAsHTML ( $attribute, string $empty_string = '-' ) : string | ||
$attribute | ||
$empty_string | string | |
리턴 | string |
protected afterFind ( ) |
protected afterSave ( ) |
protected beforeDelete ( ) : boolean | ||
리턴 | boolean |
protected beforeSave ( ) : boolean | ||
리턴 | boolean |
public static cloneObject ( $object, array $params = [] ) : mixed | ||
$object | ||
$params | array | |
리턴 | mixed |
public getCleanAttribute ( $attrName ) : string | ||
$attrName | ||
리턴 | string |
public getRelationsDefaults ( $name ) : array | ||
$name | ||
리턴 | array |
public static getShortModelName ( ) : string | ||
리턴 | string |
public isAttributeDirty ( $attrName ) : boolean | ||
$attrName | ||
리턴 | boolean |
public isModelDirty ( ) : boolean | ||
리턴 | boolean | true if the model dirty |
public saveOnlyIfDirty ( boolean $enable = true ) : BaseActiveRecord | ||
$enable | boolean | |
리턴 | BaseActiveRecord |
protected setDefaultAdmissionTime ( $admissionTime, $startTime ) : boolean | string | ||
$admissionTime | ||
$startTime | ||
리턴 | boolean | string |
protected $auto_update_relations |