User extends ModelClass Uses ModelTrait, CompanyRelationTrait, PasswordTrait, GravatarTrait
Usuario de FacturaScripts.
Table of Contents
DEFAULT_LEVEL | 2 | |
---|---|---|
$admin | bool | |
$codagente | string | |
$codalmacen | string | |
$creationdate | string | |
string | ||
$enabled | bool | |
$homepage | string | |
$langcode | string | |
$lastactivity | string | |
$lastip | string | |
$level | int | |
$logkey | string | |
$nick | string | |
$fields | List of fields in the table. | array |
$idempresa | int | |
$newPassword | New password. | string |
$newPassword2 | Repeated new password. | string |
$password | Password hashed with password_hash() | string |
$checkedTables | List of already tested tables. | array |
$dataBase | It provides direct access to the database. | DataBase |
addRole() | bool | |
can() | Devuelve true si el usuario tiene acceso a la página $pageName. Para comprobar si el usuario tiene permiso para modificar datos en la página, se debe pasar 'update' como parámetro $permission. | bool |
clear() | mixed | |
delete() | Remove the model data from the database. | bool |
getRoles() | array | |
install() | string | |
newLogkey() | Generates a new login key for the user. It also updates lastactivity and last IP. | string |
primaryColumn() | string | |
tableName() | string | |
test() | Returns true if there are no errors in the values of the model properties. | bool |
updateActivity() | Updates last ip address and last activity property. | mixed |
verifyLogkey() | Verifies the login key. | bool |
saveInsert() | Insert the model data in the database. | bool |
testAgent() | bool | |
testWarehouse() | bool | |
getModelFields() | Returns the list of fields in the table. | array |
modelClassName() | Returns the name of the class of the model. | string |
modelName() | Returns the name of the model. | string |
loadModelFields() | Loads table fields if is necessary. | mixed |
getCompany() | Empresa | |
primaryColumnValue() | Returns the current value of the main column of the model. | mixed |
toolBox() | ToolBox | |
setPassword() | Asigns the new password to the user. | mixed |
verifyPassword() | Verifies password. It also rehash the password if needed. | bool |
testPassword() | bool | |
gravatar() | Returns gravatar image url. | string |
all() | Returns all models that correspond to the selected filters. | static[] |
codeModelAll() | Allows to use this model as source in CodeModel special model. | \FacturaScripts\Dinamic\Model\CodeModel[] |
codeModelSearch() | Allows to use this model as source in CodeModel special model. | \FacturaScripts\Dinamic\Model\CodeModel[] |
count() | Returns the number of records in the model that meet the condition. | int |
delete() | Remove the model data from the database. | bool |
exists() | Returns true if the model data is stored in the database. | bool |
get() | Returns the model whose primary column corresponds to the value $cod | static|bool |
loadFromCode() | Fill the class with the registry values whose primary column corresponds to the value $cod, or according to the condition where indicated, if value is not reported in $cod. | bool |
newCode() | Returns the following code for the reported field or the primary key of the model. | int |
primaryDescriptionColumn() | Returns the name of the column that describes the model, such as name, description. | string |
primaryDescription() | Descriptive identifier for humans of the data record | string |
save() | Stores the model data in the database. | bool |
test() | Returns true if there are no errors in the values of the model properties. | bool |
url() | Returns the url where to see / modify the data. | string |
saveInsert() | Insert the model data in the database. | bool |
saveUpdate() | Update the model data in the database. | bool |
getOrderBy() | Convert an array of filters order by in string. | string |
getRecord() | Read the record whose primary column corresponds to the value $cod or the first that meets the indicated condition. | array |
addExtension() | Adds an extension to this model. | mixed |
pipe() | Executes all $name methods added from the extensions. | mixed |
pipeFalse() | Executes all $name methods added from the extensions until someone returns false. | bool |
primaryColumn() | Returns the name of the column that is the model's primary key. | string |
tableName() | Returns the name of the table that uses this model. | string |
__construct() | ModelClass constructor. | mixed |
changePrimaryColumnValue() | Change the value of the primary column in the model and the database. | bool |
clear() | Reset the values of all model properties. | mixed |
install() | This function is called when creating the model table. Returns the SQL that will be executed after the creation of the table. Useful to insert values default. | string |
loadFromData() | Assign the values of the $data array to the model properties. | mixed |
toArray() | Returns an array with the model fields values. | array |
checkTable() | Checks and updates the structure of the table if necessary. | bool |
getBoolValueForField() | Returns the boolean value for the field. | bool|null |
getFloatValueForField() | Returns the float value for the field. | float|null |
getIntegerValueForField() | Returns the integer value by controlling special cases for the PK and FK. | int|null |
Constants
DEFAULT_LEVEL
mixed
$DEFAULT_LEVEL
= 2
AUDIT_CHANNEL
mixed
$AUDIT_CHANNEL
= 'audit'
DATE_STYLE
mixed
$DATE_STYLE
= 'd-m-Y'
DATETIME_STYLE
mixed
$DATETIME_STYLE
= 'd-m-Y H:i:s'
HOUR_STYLE
mixed
$HOUR_STYLE
= 'H:i:s'
Properties
$admin
public
bool
$admin
$codagente
public
string
$codagente
$codalmacen
public
string
$codalmacen
$creationdate
public
string
$creationdate
public
string
$email
$enabled
public
bool
$enabled
$homepage
public
string
$homepage
$langcode
public
string
$langcode
$lastactivity
public
string
$lastactivity
$lastip
public
string
$lastip
$level
public
int
$level
$logkey
public
string
$logkey
$nick
public
string
$nick
$fields
List of fields in the table.
protected
static array
$fields
= []
$idempresa
public
int
$idempresa
$newPassword
New password.
public
string
$newPassword
$newPassword2
Repeated new password.
public
string
$newPassword2
$password
Password hashed with password_hash()
public
string
$password
$checkedTables
List of already tested tables.
private
static array
$checkedTables
= []
$dataBase
It provides direct access to the database.
protected
static DataBase
$dataBase
Methods
addRole()
public
addRole(
$code :
string|null
)
: bool
Parameters
- $code : string|null
Return values
boolcan()
Devuelve true si el usuario tiene acceso a la página $pageName. Para comprobar si el usuario tiene permiso para modificar datos en la página, se debe pasar 'update' como parámetro $permission.
public
can(
$pageName :
string
[, $permission :
string
= 'access' ]
)
: bool
Parameters
- $pageName : string
- $permission : string = 'access'
Return values
boolclear()
public
clear(
)
: mixed
Return values
mixeddelete()
Remove the model data from the database.
public
delete(
)
: bool
Return values
boolgetRoles()
public
getRoles(
)
: array
Return values
arrayinstall()
public
install(
)
: string
Return values
stringnewLogkey()
Generates a new login key for the user. It also updates lastactivity and last IP.
public
newLogkey(
$ipAddress :
string
)
: string
Parameters
- $ipAddress : string
Return values
stringprimaryColumn()
public
static primaryColumn(
)
: string
Return values
stringtableName()
public
static tableName(
)
: string
Return values
stringtest()
Returns true if there are no errors in the values of the model properties.
public
test(
)
: bool
It runs inside the save method.
Return values
boolupdateActivity()
Updates last ip address and last activity property.
public
updateActivity(
$ipAddress :
string
)
: mixed
Parameters
- $ipAddress : string
Return values
mixedverifyLogkey()
Verifies the login key.
public
verifyLogkey(
$value :
string
)
: bool
Parameters
- $value : string
Return values
boolsaveInsert()
Insert the model data in the database.
protected
saveInsert(
[ $values :
array
= [] ]
)
: bool
Parameters
- $values : array = []
Return values
booltestAgent()
protected
testAgent(
)
: bool
Return values
booltestWarehouse()
protected
testWarehouse(
)
: bool
Return values
boolgetModelFields()
Returns the list of fields in the table.
public
abstract getModelFields(
)
: array
Return values
arraymodelClassName()
Returns the name of the class of the model.
public
abstract modelClassName(
)
: string
Return values
stringmodelName()
Returns the name of the model.
protected
abstract modelName(
)
: string
Return values
stringloadModelFields()
Loads table fields if is necessary.
protected
abstract loadModelFields(
&$dataBase :
DataBase
, $tableName :
string
)
: mixed
Parameters
- $dataBase : DataBase
- $tableName : string
Return values
mixedgetCompany()
public
getCompany(
)
: Empresa
Return values
EmpresaprimaryColumnValue()
Returns the current value of the main column of the model.
public
primaryColumnValue(
)
: mixed
Return values
mixedtoolBox()
protected
static toolBox(
)
: ToolBox
Return values
ToolBoxsetPassword()
Asigns the new password to the user.
public
setPassword(
$value :
string
)
: mixed
Parameters
- $value : string
Return values
mixedverifyPassword()
Verifies password. It also rehash the password if needed.
public
verifyPassword(
$value :
string
)
: bool
Parameters
- $value : string
Return values
booltestPassword()
protected
testPassword(
)
: bool
Return values
boolgravatar()
Returns gravatar image url.
public
gravatar(
[ $size :
int
= 80 ]
)
: string
Parameters
- $size : int = 80
Return values
stringall()
Returns all models that correspond to the selected filters.
public
all(
[ $where :
array
= [] ]
[, $order :
array
= [] ]
, $offset :
int
[, $limit :
int
= 50 ]
)
: static[]
Parameters
- $where : array = []
filters to apply to model records.
- $order : array = []
fields to use in the sorting. For example ['code' => 'ASC']
- $offset : int
- $limit : int = 50
Return values
static[]codeModelAll()
Allows to use this model as source in CodeModel special model.
public
codeModelAll(
[ $fieldCode :
string
= '' ]
)
: \FacturaScripts\Dinamic\Model\CodeModel[]
Parameters
- $fieldCode : string = ''
Return values
\FacturaScripts\Dinamic\Model\CodeModel[]codeModelSearch()
Allows to use this model as source in CodeModel special model.
public
codeModelSearch(
$query :
string
[, $fieldCode :
string
= '' ]
[, $where :
\FacturaScripts\Core\Base\DataBase\DataBaseWhere[]
= [] ]
)
: \FacturaScripts\Dinamic\Model\CodeModel[]
Parameters
- $query : string
- $fieldCode : string = ''
- $where : \FacturaScripts\Core\Base\DataBase\DataBaseWhere[] = []
Return values
\FacturaScripts\Dinamic\Model\CodeModel[]count()
Returns the number of records in the model that meet the condition.
public
count(
[ $where :
\FacturaScripts\Core\Base\DataBase\DataBaseWhere[]
= [] ]
)
: int
Parameters
- $where : \FacturaScripts\Core\Base\DataBase\DataBaseWhere[] = []
filters to apply to model records.
Return values
intdelete()
Remove the model data from the database.
public
delete(
)
: bool
Return values
boolexists()
Returns true if the model data is stored in the database.
public
exists(
)
: bool
Return values
boolget()
Returns the model whose primary column corresponds to the value $cod
public
get(
$code :
string
)
: static|bool
Parameters
- $code : string
Return values
static|boolloadFromCode()
Fill the class with the registry values whose primary column corresponds to the value $cod, or according to the condition where indicated, if value is not reported in $cod.
public
loadFromCode(
$code :
string
[, $where :
array
= [] ]
[, $order :
array
= [] ]
)
: bool
Initializes the values of the class if there is no record that meet the above conditions. Returns True if the record exists and False otherwise.
Parameters
- $code : string
- $where : array = []
- $order : array = []
Return values
boolnewCode()
Returns the following code for the reported field or the primary key of the model.
public
newCode(
[ $field :
string
= '' ]
[, $where :
array
= [] ]
)
: int
Parameters
- $field : string = ''
- $where : array = []
Return values
intprimaryDescriptionColumn()
Returns the name of the column that describes the model, such as name, description.
public
primaryDescriptionColumn(
)
: string
..
Return values
stringprimaryDescription()
Descriptive identifier for humans of the data record
public
primaryDescription(
)
: string
Return values
stringsave()
Stores the model data in the database.
public
save(
)
: bool
Return values
booltest()
Returns true if there are no errors in the values of the model properties.
public
test(
)
: bool
It runs inside the save method.
Return values
boolurl()
Returns the url where to see / modify the data.
public
url(
[ $type :
string
= 'auto' ]
[, $list :
string
= 'List' ]
)
: string
Parameters
- $type : string = 'auto'
- $list : string = 'List'
Return values
stringsaveInsert()
Insert the model data in the database.
protected
saveInsert(
[ $values :
array
= [] ]
)
: bool
Parameters
- $values : array = []
Return values
boolsaveUpdate()
Update the model data in the database.
protected
saveUpdate(
[ $values :
array
= [] ]
)
: bool
Parameters
- $values : array = []
Return values
boolgetOrderBy()
Convert an array of filters order by in string.
private
getOrderBy(
$order :
array
)
: string
Parameters
- $order : array
Return values
stringgetRecord()
Read the record whose primary column corresponds to the value $cod or the first that meets the indicated condition.
private
getRecord(
$code :
string
[, $where :
array
= [] ]
[, $order :
array
= [] ]
)
: array
Parameters
- $code : string
- $where : array = []
- $order : array = []
Return values
arrayaddExtension()
Adds an extension to this model.
public
abstract static addExtension(
$extension :
mixed
)
: mixed
Parameters
- $extension : mixed
Return values
mixedpipe()
Executes all $name methods added from the extensions.
public
abstract pipe(
$name :
string
, ...$arguments :
array
)
: mixed
Parameters
- $name : string
- $arguments : array
Return values
mixedpipeFalse()
Executes all $name methods added from the extensions until someone returns false.
public
abstract pipeFalse(
$name :
string
, ...$arguments :
array
)
: bool
Parameters
- $name : string
- $arguments : array
Return values
boolprimaryColumn()
Returns the name of the column that is the model's primary key.
public
abstract static primaryColumn(
)
: string
Return values
stringtableName()
Returns the name of the table that uses this model.
public
abstract static tableName(
)
: string
Return values
string__construct()
ModelClass constructor.
public
__construct(
[ $data :
array
= [] ]
)
: mixed
Parameters
- $data : array = []
Return values
mixedchangePrimaryColumnValue()
Change the value of the primary column in the model and the database.
public
changePrimaryColumnValue(
$newValue :
mixed
)
: bool
Parameters
- $newValue : mixed
Return values
boolclear()
Reset the values of all model properties.
public
clear(
)
: mixed
Return values
mixedinstall()
This function is called when creating the model table. Returns the SQL that will be executed after the creation of the table. Useful to insert values default.
public
install(
)
: string
Return values
stringloadFromData()
Assign the values of the $data array to the model properties.
public
loadFromData(
[ $data :
array
= [] ]
[, $exclude :
array
= [] ]
)
: mixed
Parameters
- $data : array = []
- $exclude : array = []
Return values
mixedtoArray()
Returns an array with the model fields values.
public
toArray(
)
: array
Return values
arraycheckTable()
Checks and updates the structure of the table if necessary.
private
checkTable(
)
: bool
Return values
boolgetBoolValueForField()
Returns the boolean value for the field.
private
getBoolValueForField(
$field :
array
, $value :
mixed
)
: bool|null
Parameters
- $field : array
- $value : mixed
Return values
bool|nullgetFloatValueForField()
Returns the float value for the field.
private
getFloatValueForField(
$field :
array
, $value :
string
)
: float|null
Parameters
- $field : array
- $value : string
Return values
float|nullgetIntegerValueForField()
Returns the integer value by controlling special cases for the PK and FK.
private
getIntegerValueForField(
$field :
array
, $value :
string
)
: int|null
Parameters
- $field : array
- $value : string