StationListFactory - staffcheck/api GitHub Wiki

StationListFactory

  • Class name: StationListFactory
  • Namespace:
  • Parent class: StationFactory
  • This class implements: IteratorAggregate

Properties

$table

protected mixed $table = 'station'
  • Visibility: protected

$pk_sequence_name

protected mixed $pk_sequence_name = 'station_id_seq'
  • Visibility: protected

$company_obj

protected mixed $company_obj = NULL
  • Visibility: protected

$data

public mixed $data = array()
  • Visibility: public

$old_data

public mixed $old_data = array()
  • Visibility: public

$tmp_data

public mixed $tmp_data = array()
  • Visibility: public

$enable_system_log_detail

protected mixed $enable_system_log_detail = TRUE
  • Visibility: protected

$progress_bar_obj

protected mixed $progress_bar_obj = NULL
  • Visibility: protected

$AMF_message_id

protected mixed $AMF_message_id = NULL
  • Visibility: protected

$Validator

public mixed $Validator = NULL
  • Visibility: public

$validate_only

public mixed $validate_only = FALSE
  • Visibility: public

$is_valid

private mixed $is_valid = FALSE
  • Visibility: private

Methods

getAll

\StationListFactory StationListFactory::getAll(integer $limit, integer $page, array $where, array $order)
  • Visibility: public

Arguments

  • $limit integer - Limit the number of records returned
  • $page integer - Page number of records to return for pagination
  • $where array - Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... )
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getById

boolean|\StationListFactory StationListFactory::getById(string $id, array $where, array $order)
  • Visibility: public

Arguments

  • $id string - UUID
  • $where array - Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... )
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByCompanyId

boolean|\StationListFactory StationListFactory::getByCompanyId(string $id, integer $limit, integer $page, array $where, array $order)
  • Visibility: public

Arguments

  • $id string - UUID
  • $limit integer - Limit the number of records returned
  • $page integer - Page number of records to return for pagination
  • $where array - Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... )
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByIdAndCompanyId

boolean|\StationListFactory StationListFactory::getByIdAndCompanyId(string $id, string $company_id, array $order)
  • Visibility: public

Arguments

  • $id string - UUID
  • $company_id string - UUID
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByCompanyIdAndTypeId

boolean|\StationListFactory StationListFactory::getByCompanyIdAndTypeId(string $company_id, integer $type_id, array $order)
  • Visibility: public

Arguments

  • $company_id string - UUID
  • $type_id integer
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByStationId

boolean|\StationListFactory StationListFactory::getByStationId(string $station_id, array $order)
  • Visibility: public

Arguments

  • $station_id string - UUID
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByStationIdAndCompanyId

boolean|\StationListFactory StationListFactory::getByStationIdAndCompanyId(string $station_id, string $company_id, array $order)
  • Visibility: public

Arguments

  • $station_id string - UUID
  • $company_id string - UUID
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByStationIdAndStatusIdAndTypeId

boolean|\StationListFactory StationListFactory::getByStationIdAndStatusIdAndTypeId(string $station_id, integer|array $status_id, integer|array $type_id, array $order)
  • Visibility: public

Arguments

  • $station_id string - UUID
  • $status_id integer|array
  • $type_id integer|array
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getPendingSynchronizationByCompanyIdAndTypeId

boolean|\StationListFactory StationListFactory::getPendingSynchronizationByCompanyIdAndTypeId(string $company_id, integer $type_id, array $order)
  • Visibility: public

Arguments

  • $company_id string - UUID
  • $type_id integer
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getByUserIdAndStatusAndType

boolean|\StationListFactory StationListFactory::getByUserIdAndStatusAndType(string $user_id, $status, $type, $station_id)
  • Visibility: public

Arguments

  • $user_id string - UUID
  • $status mixed
  • $type mixed
  • $station_id mixed

getByCompanyIdArray

array|boolean StationListFactory::getByCompanyIdArray(string $company_id)
  • Visibility: public

Arguments

  • $company_id string - UUID

getCountByCompanyIdAndTypeId

boolean|\StationListFactory StationListFactory::getCountByCompanyIdAndTypeId(string $company_id, integer $type_id, array $order)
  • Visibility: public

Arguments

  • $company_id string - UUID
  • $type_id integer
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getAPITimeClockStationsByArrayCriteria

\StationListFactory StationListFactory::getAPITimeClockStationsByArrayCriteria($filter_data, integer $limit, integer $page, array $where, array $order)
  • Visibility: public

Arguments

  • $filter_data mixed
  • $limit integer - Limit the number of records returned
  • $page integer - Page number of records to return for pagination
  • $where array - Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... )
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

getAPISearchByCompanyIdAndArrayCriteria

boolean|\StationListFactory StationListFactory::getAPISearchByCompanyIdAndArrayCriteria(string $company_id, $filter_data, integer $limit, integer $page, array $where, array $order)
  • Visibility: public

Arguments

  • $company_id string - UUID
  • $filter_data mixed
  • $limit integer - Limit the number of records returned
  • $page integer - Page number of records to return for pagination
  • $where array - Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... )
  • $order array - Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... )

_getFactoryOptions

boolean Factory::_getFactoryOptions(string $name, string|integer $parent)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $name string
  • $parent string|integer

_getVariableToFunctionMap

boolean Factory::_getVariableToFunctionMap(array $data)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $data array

getCompanyObject

boolean StationFactory::getCompanyObject()

getCompany

mixed StationFactory::getCompany()

setCompany

boolean StationFactory::setCompany(string $value)

Arguments

  • $value string - UUID

getStatus

boolean|integer StationFactory::getStatus()

setStatus

boolean StationFactory::setStatus($value)

Arguments

  • $value mixed

getType

boolean|integer StationFactory::getType()

setType

boolean StationFactory::setType($value)

Arguments

  • $value mixed

isUniqueStation

boolean StationFactory::isUniqueStation($station)

Arguments

  • $station mixed

getStation

boolean|string StationFactory::getStation()

setStation

boolean StationFactory::setStation(string $value)

Arguments

  • $value string - UUID

getSource

boolean|mixed StationFactory::getSource()

setSource

boolean StationFactory::setSource($value)

Arguments

  • $value mixed

getDescription

boolean|mixed StationFactory::getDescription()

setDescription

boolean StationFactory::setDescription($value)

Arguments

  • $value mixed

getDefaultBranch

boolean|mixed StationFactory::getDefaultBranch()

setDefaultBranch

boolean StationFactory::setDefaultBranch(string $value)

Arguments

  • $value string - UUID

getDefaultDepartment

boolean|mixed StationFactory::getDefaultDepartment()

setDefaultDepartment

boolean StationFactory::setDefaultDepartment(string $value)

Arguments

  • $value string - UUID

getDefaultJob

boolean|mixed StationFactory::getDefaultJob()

setDefaultJob

boolean StationFactory::setDefaultJob(string $value)

Arguments

  • $value string - UUID

getDefaultJobItem

boolean|mixed StationFactory::getDefaultJobItem()

setDefaultJobItem

boolean StationFactory::setDefaultJobItem(string $value)

Arguments

  • $value string - UUID

getTimeZone

boolean|mixed StationFactory::getTimeZone()

setTimeZone

boolean StationFactory::setTimeZone($value)

Arguments

  • $value mixed

getGroupSelectionType

boolean|integer StationFactory::getGroupSelectionType()

setGroupSelectionType

boolean StationFactory::setGroupSelectionType($value)

Arguments

  • $value mixed

getGroup

array|boolean StationFactory::getGroup()

setGroup

boolean StationFactory::setGroup(string $ids)

Arguments

  • $ids string - UUID

getBranchSelectionType

boolean|integer StationFactory::getBranchSelectionType()

setBranchSelectionType

boolean StationFactory::setBranchSelectionType($value)

Arguments

  • $value mixed

getBranch

array|boolean StationFactory::getBranch()

setBranch

boolean StationFactory::setBranch(string $ids)

Arguments

  • $ids string - UUID

getDepartmentSelectionType

boolean|integer StationFactory::getDepartmentSelectionType()

setDepartmentSelectionType

boolean StationFactory::setDepartmentSelectionType($value)

Arguments

  • $value mixed

getDepartment

array|boolean StationFactory::getDepartment()

setDepartment

boolean StationFactory::setDepartment(string $ids)

Arguments

  • $ids string - UUID

getIncludeUser

array|boolean StationFactory::getIncludeUser()

setIncludeUser

boolean StationFactory::setIncludeUser(string $ids)

Arguments

  • $ids string - UUID

getExcludeUser

array|boolean StationFactory::getExcludeUser()

setExcludeUser

boolean StationFactory::setExcludeUser(string $ids)

Arguments

  • $ids string - UUID

getPort

boolean|mixed StationFactory::getPort()

setPort

boolean StationFactory::setPort($value)

Arguments

  • $value mixed

getUserName

boolean|mixed StationFactory::getUserName()

setUserName

boolean StationFactory::setUserName($value)

Arguments

  • $value mixed

getPassword

boolean|mixed StationFactory::getPassword()

setPassword

boolean StationFactory::setPassword($value)

Arguments

  • $value mixed

getPollFrequency

boolean|mixed StationFactory::getPollFrequency()

setPollFrequency

boolean StationFactory::setPollFrequency($value)

Arguments

  • $value mixed

getPushFrequency

boolean|mixed StationFactory::getPushFrequency()

setPushFrequency

boolean StationFactory::setPushFrequency($value)

Arguments

  • $value mixed

getPartialPushFrequency

boolean|mixed StationFactory::getPartialPushFrequency()

setPartialPushFrequency

boolean StationFactory::setPartialPushFrequency($value)

Arguments

  • $value mixed

getEnableAutoPunchStatus

boolean StationFactory::getEnableAutoPunchStatus()

setEnableAutoPunchStatus

boolean StationFactory::setEnableAutoPunchStatus($value)

Arguments

  • $value mixed

getModeFlag

array|boolean StationFactory::getModeFlag()

setModeFlag

boolean StationFactory::setModeFlag($arr)

Arguments

  • $arr mixed

getDefaultModeFlag

boolean|integer StationFactory::getDefaultModeFlag()

setDefaultModeFlag

boolean StationFactory::setDefaultModeFlag($value)

Arguments

  • $value mixed

parseWorkCode

array StationFactory::parseWorkCode($work_code)

Arguments

  • $work_code mixed

updateLastPollDateAndLastPunchTimeStamp

boolean StationFactory::updateLastPollDateAndLastPunchTimeStamp(string $id, integer $last_poll_date, integer $last_punch_date)

Update JUST station last_poll_date AND last_punch_time_stamp without affecting updated_date, and without creating an EDIT entry in the system_log.

Arguments

  • $id string - UUID
  • $last_poll_date integer
  • $last_punch_date integer

updateLastPollDate

boolean StationFactory::updateLastPollDate(string $id, integer $last_poll_date)

Update JUST station last_poll_date without affecting updated_date, and without creating an EDIT entry in the system_log.

Arguments

  • $id string - UUID
  • $last_poll_date integer

updateLastPushDate

boolean StationFactory::updateLastPushDate(string $id, integer $last_push_date)

Update JUST station last_push_date without affecting updated_date, and without creating an EDIT entry in the system_log.

Arguments

  • $id string - UUID
  • $last_push_date integer

updateLastPartialPushDate

boolean StationFactory::updateLastPartialPushDate(string $id, integer $last_partial_push_date)

Update JUST station last_partial_push_date without affecting updated_date, and without creating an EDIT entry in the system_log.

Arguments

  • $id string - UUID
  • $last_partial_push_date integer

getLastPunchTimeStamp

boolean|integer StationFactory::getLastPunchTimeStamp(boolean $raw)

Arguments

  • $raw boolean

setLastPunchTimeStamp

boolean StationFactory::setLastPunchTimeStamp(integer $value)

Arguments

  • $value integer - EPOCH

getLastPollDate

boolean|mixed StationFactory::getLastPollDate()

setLastPollDate

boolean StationFactory::setLastPollDate(integer $value)

Arguments

  • $value integer - EPOCH

getLastPollStatusMessage

boolean|mixed StationFactory::getLastPollStatusMessage()

setLastPollStatusMessage

boolean StationFactory::setLastPollStatusMessage($value)

Arguments

  • $value mixed

getLastPushDate

boolean|mixed StationFactory::getLastPushDate()

setLastPushDate

boolean StationFactory::setLastPushDate(integer $value)

Arguments

  • $value integer - EPOCH

getLastPushStatusMessage

boolean|mixed StationFactory::getLastPushStatusMessage()

setLastPushStatusMessage

boolean StationFactory::setLastPushStatusMessage($value)

Arguments

  • $value mixed

getLastPartialPushDate

boolean|mixed StationFactory::getLastPartialPushDate()

setLastPartialPushDate

boolean StationFactory::setLastPartialPushDate(integer $value)

Arguments

  • $value integer - EPOCH

getLastPartialPushStatusMessage

boolean|mixed StationFactory::getLastPartialPushStatusMessage()

setLastPartialPushStatusMessage

boolean StationFactory::setLastPartialPushStatusMessage($value)

Arguments

  • $value mixed

getUserValue1

string StationFactory::getUserValue1()

setUserValue1

boolean StationFactory::setUserValue1($value)

Arguments

  • $value mixed

getUserValue2

string StationFactory::getUserValue2()

setUserValue2

boolean StationFactory::setUserValue2($value)

Arguments

  • $value mixed

getUserValue3

string StationFactory::getUserValue3()

setUserValue3

boolean StationFactory::setUserValue3($value)

Arguments

  • $value mixed

getUserValue4

string StationFactory::getUserValue4()

setUserValue4

boolean StationFactory::setUserValue4($value)

Arguments

  • $value mixed

getUserValue5

string StationFactory::getUserValue5()

setUserValue5

boolean StationFactory::setUserValue5($value)

Arguments

  • $value mixed

genStationID

string StationFactory::genStationID()

setCookie

boolean StationFactory::setCookie()

destroyCookie

boolean StationFactory::destroyCookie()

updateAllowedDate

boolean StationFactory::updateAllowedDate(string $id, string $user_id)

Arguments

  • $id string - UUID
  • $user_id string - UUID

getAllowedDate

boolean|mixed StationFactory::getAllowedDate()

setAllowedDate

boolean StationFactory::setAllowedDate(integer $value)

Arguments

  • $value integer - EPOCH

checkSource

boolean StationFactory::checkSource($source, string $current_station_id)

Arguments

  • $source mixed
  • $current_station_id string - UUID

isAllowed

boolean StationFactory::isAllowed(string $user_id, string $current_station_id, string $id, $update_allowed_date)

Arguments

  • $user_id string - UUID
  • $current_station_id string - UUID
  • $id string - UUID
  • $update_allowed_date mixed

checkAllowed

boolean StationFactory::checkAllowed(string $user_id, string $station_id, integer $type, $update_allowed_date)

A fast way to check many stations if the user is allowed. 10 = PC

Arguments

  • $user_id string - UUID
  • $station_id string - UUID
  • $type integer
  • $update_allowed_date mixed

getOrCreateStation

\StationListFactory StationFactory::getOrCreateStation(string $station_id, string $company_id, integer $type_id, object $permission_obj, object $user_obj)
  • Visibility: public
  • This method is static.
  • This method is defined by StationFactory

Arguments

  • $station_id string - UUID
  • $company_id string - UUID
  • $type_id integer
  • $permission_obj object
  • $user_obj object

Validate

boolean StationFactory::Validate(boolean $ignore_warning)

Arguments

  • $ignore_warning boolean

isActiveForAnyEmployee

boolean StationFactory::isActiveForAnyEmployee()

preSave

boolean StationFactory::preSave()

postSave

boolean StationFactory::postSave()

setObjectFromArray

boolean StationFactory::setObjectFromArray($data)

Arguments

  • $data mixed

getObjectAsArray

array StationFactory::getObjectAsArray(null $include_columns, boolean $permission_children_ids)

Arguments

  • $include_columns null
  • $permission_children_ids boolean

addLog

boolean StationFactory::addLog($log_action)

Arguments

  • $log_action mixed

__construct

mixed Factory::__construct()

Factory constructor.

  • Visibility: public
  • This method is defined by Factory

getAMFMessageID

boolean|null Factory::getAMFMessageID()

Used for updating progress bar for API calls.

  • Visibility: public
  • This method is defined by Factory

setAMFMessageID

boolean Factory::setAMFMessageID(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

setProgressBarObject

boolean Factory::setProgressBarObject(object $obj)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $obj object

getProgressBarObject

null|\ProgressBar Factory::getProgressBarObject()
  • Visibility: public
  • This method is defined by Factory

setGenericObject

boolean Factory::setGenericObject(object $obj, string $variable)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $obj object
  • $variable string

getGenericObject

boolean Factory::getGenericObject(string $list_factory, string|integer $id, string $variable, string $list_factory_method, string $id_method)

Generic function to return and cache class objects ListFactory, ListFactoryMethod, Variable, ID, IDMethod

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $list_factory string
  • $id string|integer - UUID
  • $variable string
  • $list_factory_method string
  • $id_method string

getCompanyGenericMapData

mixed Factory::getCompanyGenericMapData(string $company_id, integer $object_type_id, string $id, string $variable)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $company_id string - UUID
  • $object_type_id integer
  • $id string - UUID
  • $variable string

getGenericDataValue

boolean|mixed Factory::getGenericDataValue(string $name, $cast)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string
  • $cast mixed

setGenericDataValue

boolean Factory::setGenericDataValue(string $name, mixed $data, $cast)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string
  • $data mixed
  • $cast mixed

castGenericDataValue

mixed Factory::castGenericDataValue($value, $cast)

Generic casting function that all set/get*() functions should pass through.

However for now lets wait until we have meta data from SQL schema so we can pass those datatypes directly into this.

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $value mixed - mixed
  • $cast mixed - string

getGenericTempDataValue

boolean Factory::getGenericTempDataValue(string $name)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string

setGenericTempDataValue

boolean Factory::setGenericTempDataValue(string $name, mixed $data)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string
  • $data mixed

getGenericOldDataValue

boolean|mixed Factory::getGenericOldDataValue(string $name)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string - Gets data value from old_data array, or the original value in the database, prior to any changes currently in memory.

getCache

boolean|mixed Factory::getCache(string $cache_id, string $group_id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $cache_id string
  • $group_id string

saveCache

boolean Factory::saveCache(mixed $data, string $cache_id, string $group_id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data mixed
  • $cache_id string
  • $group_id string

removeCache

boolean Factory::removeCache(string $cache_id, string $group_id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $cache_id string
  • $group_id string

setCacheLifeTime

boolean Factory::setCacheLifeTime(integer $secs)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $secs integer

serializeRS

string Factory::serializeRS(object $rs)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $rs object

unserializeRS

mixed Factory::unserializeRS(string $rs)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $rs string

getTable

boolean|string Factory::getTable(boolean $strip_quotes)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $strip_quotes boolean

getColumn

boolean|mixed Factory::getColumn(string $column)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $column string

__toString

boolean|string Factory::__toString()
  • Visibility: public
  • This method is defined by Factory

toBool

integer Factory::toBool(string|integer|boolean $value)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $value string|integer|boolean

fromBool

boolean Factory::fromBool(string|integer|boolean $value)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $value string|integer|boolean

isNew

boolean Factory::isNew(boolean $force_lookup, string $id)

Determines if the data is new data, or updated data. Basically determines if a database INSERT or UPDATE SQL statement is generated.

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $force_lookup boolean
  • $id string - UUID

getLabelId

boolean|mixed|string Factory::getLabelId()
  • Visibility: public
  • This method is defined by Factory

getId

boolean|mixed Factory::getId()
  • Visibility: public
  • This method is defined by Factory

setId

boolean Factory::setId(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

getEnableSystemLogDetail

boolean Factory::getEnableSystemLogDetail()
  • Visibility: public
  • This method is defined by Factory

setEnableSystemLogDetail

boolean Factory::setEnableSystemLogDetail($bool)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $bool mixed

getDeleted

boolean Factory::getDeleted()
  • Visibility: public
  • This method is defined by Factory

setDeleted

boolean Factory::setDeleted(boolean $bool)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $bool boolean

getCreatedDate

integer Factory::getCreatedDate()
  • Visibility: public
  • This method is defined by Factory

setCreatedDate

boolean Factory::setCreatedDate(integer $epoch)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $epoch integer - EPOCH

getCreatedBy

boolean|mixed Factory::getCreatedBy()
  • Visibility: public
  • This method is defined by Factory

setCreatedBy

boolean Factory::setCreatedBy(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

getUpdatedDate

integer Factory::getUpdatedDate()
  • Visibility: public
  • This method is defined by Factory

setUpdatedDate

boolean|integer|null|string Factory::setUpdatedDate(integer $epoch)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $epoch integer - EPOCH

getUpdatedBy

boolean|mixed Factory::getUpdatedBy()
  • Visibility: public
  • This method is defined by Factory

setUpdatedBy

boolean|null Factory::setUpdatedBy(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

getDeletedDate

boolean|mixed Factory::getDeletedDate()
  • Visibility: public
  • This method is defined by Factory

setDeletedDate

boolean Factory::setDeletedDate(integer $epoch)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $epoch integer - EPOCH

getDeletedBy

boolean|mixed Factory::getDeletedBy()
  • Visibility: public
  • This method is defined by Factory

setDeletedBy

boolean|null Factory::setDeletedBy(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

setIsValid

boolean Factory::setIsValid(boolean $is_valid)

Sets the is_valid flag, mostly used to set it to FALSE to force a full re-validation.

Required because $this->is_valid is a private variable and should stay that way.

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $is_valid boolean

setCreatedAndUpdatedColumns

boolean Factory::setCreatedAndUpdatedColumns(array $data, array $variable_to_function_map)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data array
  • $variable_to_function_map array

getCreatedAndUpdatedColumns

boolean Factory::getCreatedAndUpdatedColumns(array $data, null $include_columns)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data array
  • $include_columns null

getPermissionColumns

boolean Factory::getPermissionColumns(array $data, string $object_user_id, string $created_by_id, string $permission_children_ids, array $include_columns)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data array
  • $object_user_id string - UUID
  • $created_by_id string - UUID
  • $permission_children_ids string - UUID
  • $include_columns array

getOptions

array|boolean Factory::getOptions(string $name, string|integer $parent)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $name string
  • $parent string|integer

getVariableToFunctionMap

array|boolean Factory::getVariableToFunctionMap(array $data)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data array

getRecordCount

integer|boolean Factory::getRecordCount()
  • Visibility: public
  • This method is defined by Factory

getCurrentRow

integer|boolean Factory::getCurrentRow(integer $offset)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $offset integer

setQueryStatementTimeout

boolean Factory::setQueryStatementTimeout(null $milliseconds)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $milliseconds null

getRecordSetColumnList

array|boolean Factory::getRecordSetColumnList(object $rs)
  • Visibility: private
  • This method is defined by Factory

Arguments

  • $rs object

castInteger

boolean|integer|string Factory::castInteger(integer|string $int, string $type)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $int integer|string
  • $type string

getListSQL

boolean|integer|string|array Factory::getListSQL(array|string|integer $array, array $ph, string|boolean $cast)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $array array|string|integer
  • $ph array
  • $cast string|boolean

getDateRangeSQL

boolean|string Factory::getDateRangeSQL(string $str, string $column, string $format, boolean $include_blank_dates)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $str string
  • $column string
  • $format string
  • $include_blank_dates boolean

handleSQLSyntax

string Factory::handleSQLSyntax(string $arg)

SQL where clause Syntax: or % as wildcard.

"" as exact match, no default wildcard and no metaphone

Handles '*' and '%' as wildcards, defaults to wildcard on the end always. If no wildcard is to be added, the last character should be |

  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $arg string

stripSQLSyntax

mixed Factory::stripSQLSyntax(string $arg)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $arg string

getSQLToTimeStampFunction

string Factory::getSQLToTimeStampFunction()
  • Visibility: protected
  • This method is defined by Factory

getDatabaseType

string Factory::getDatabaseType()
  • Visibility: protected
  • This method is defined by Factory

getGEOMAsTextFunction

string Factory::getGEOMAsTextFunction(string $sql)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $sql string

getSQLToEpochFunction

string Factory::getSQLToEpochFunction(string $sql)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $sql string

getSQLToTimeFunction

string Factory::getSQLToTimeFunction(string $sql)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $sql string

getSQLStringAggregate

string Factory::getSQLStringAggregate(string $sql, string $glue)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $sql string
  • $glue string

getWhereClauseSQL

null|string Factory::getWhereClauseSQL(array|string $columns, array|string $args, string $type, array $ph, string $query_stub, boolean $and)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $columns array|string
  • $args array|string
  • $type string
  • $ph array
  • $query_stub string
  • $and boolean

parseColumnName

boolean|string Factory::parseColumnName(string $column)
  • Visibility: private
  • This method is defined by Factory

Arguments

  • $column string

getWhereSQL

boolean|string Factory::getWhereSQL(array $array, boolean $append_where)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $array array
  • $append_where boolean

getColumnsFromAliases

array Factory::getColumnsFromAliases(array $columns, array $aliases)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $columns array
  • $aliases array

convertFlexArray

array Factory::convertFlexArray(array $array)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $array array

getValidSQLColumns

array Factory::getValidSQLColumns(array $array, boolean $strict, array $additional_fields)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $array array
  • $strict boolean
  • $additional_fields array

getSortSQL

boolean|string Factory::getSortSQL(array $array, boolean $strict, array $additional_fields)
  • Visibility: protected
  • This method is defined by Factory

Arguments

  • $array array
  • $strict boolean
  • $additional_fields array

getColumnList

array|boolean Factory::getColumnList()
  • Visibility: public
  • This method is defined by Factory

getEmptyRecordSet

mixed Factory::getEmptyRecordSet(string $id)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $id string - UUID

getUpdateQuery

boolean Factory::getUpdateQuery()
  • Visibility: private
  • This method is defined by Factory

getInsertQuery

mixed Factory::getInsertQuery()
  • Visibility: private
  • This method is defined by Factory

StartTransaction

mixed Factory::StartTransaction()
  • Visibility: public
  • This method is defined by Factory

FailTransaction

mixed Factory::FailTransaction()
  • Visibility: public
  • This method is defined by Factory

CommitTransaction

mixed Factory::CommitTransaction()
  • Visibility: public
  • This method is defined by Factory

setTransactionMode

mixed Factory::setTransactionMode(string $mode)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $mode string

getTransactionMode

string Factory::getTransactionMode()
  • Visibility: public
  • This method is defined by Factory

isValid

boolean Factory::isValid(boolean $ignore_warning)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $ignore_warning boolean

isWarning

boolean Factory::isWarning()
  • Visibility: public
  • This method is defined by Factory

getSequenceName

boolean Factory::getSequenceName()
  • Visibility: public
  • This method is defined by Factory

getNextInsertId

boolean|string Factory::getNextInsertId()
  • Visibility: public
  • This method is defined by Factory

ExecuteSQL

boolean Factory::ExecuteSQL(string $query, array $ph, integer $limit, integer $page)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $query string
  • $ph array
  • $limit integer - Limit the number of records returned
  • $page integer - Page number of records to return for pagination

RetryExecuteSQL

boolean Factory::RetryExecuteSQL(string $query, array $ph, integer $retry_max_attempts, integer $sleep)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $query string
  • $ph array
  • $retry_max_attempts integer
  • $sleep integer

getDataDifferences

array Factory::getDataDifferences()

Returns the differences in data from the DB vs the in-memory object, so the data will be the OLD data. Used in Validation/postSave() functions to determine if a field has changed or not.

  • Visibility: public
  • This method is defined by Factory

isDataDifferent

boolean Factory::isDataDifferent($key, $data_diff, null $type_id, null $new_data)

Used to check the differences between a single key in the $old_data vs. $data arrays.

This is especially important to use when trying to see if a date or timestamp field in the DB has changed, as they need to be handled in special ways.

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $key mixed - string
  • $data_diff mixed - array
  • $type_id null - string
  • $new_data null - mixed

Save

boolean|integer|string Factory::Save(boolean $reset_data, boolean $force_lookup)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $reset_data boolean
  • $force_lookup boolean

Delete

boolean Factory::Delete()
  • Visibility: public
  • This method is defined by Factory

getIDSByListFactory

array|boolean Factory::getIDSByListFactory(object $lf)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $lf object

bulkDelete

boolean Factory::bulkDelete(string|array $ids)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $ids string|array - UUID

clearGeoCode

boolean Factory::clearGeoCode(array $data_diff)
  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data_diff array

clearNonMappedData

array|null Factory::clearNonMappedData(array|null $data)

Removes array elements from $data that are not in the function map.

  • Visibility: public
  • This method is defined by Factory

Arguments

  • $data array|null

clearData

boolean Factory::clearData()
  • Visibility: public
  • This method is defined by Factory

clearOldData

boolean Factory::clearOldData()
  • Visibility: public
  • This method is defined by Factory

getIterator

\FactoryListIterator Factory::getIterator()
  • Visibility: public
  • This method is defined by Factory

getCurrent

mixed Factory::getCurrent()
  • Visibility: public
  • This method is defined by Factory
⚠️ **GitHub.com Fallback** ⚠️