ItemModel
扩展自 BaseDatabaseModel 实现 ItemModelInterface原型项模型。
自 |
1.6 |
---|---|
包 |
Joomla CMS |
方法
__construct
构造函数
__construct(mixed||string|int config = [], \Joomla\CMS\MVC\Factory\MVCFactoryInterface factory = null) :
自 |
3.0 |
---|---|
抛出 |
|
参数
- config
array<string|int, mixed>
配置选项数组(名称、状态、dbo、table_path、ignore_request)。- factory
MVCFactoryInterface|null
工厂。
返回值
混合
__get
_db 变量的代理。
__get( name) :
自 |
4.2.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 使用 getDatabase() 代替直接访问 _db |
参数
- name
string
元素的名称
返回值
mixed
如果设置,则为元素的值,否则为 null
_createFileName
为资源创建文件名
_createFileName( type, mixed||string|int parts = []) :
自 |
3.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 将被移除,不会替换 |
参数
- type
string
要为其创建文件名的资源类型。- parts
array<string|int, mixed>
文件名信息的关联数组。
返回值
string
文件名
_createTable
加载并返回表对象的方法。
_createTable( name, prefix = 'Table', mixed||string|int config = []) : \Joomla\CMS\Table\Table|bool
自 |
3.0 |
---|---|
参见 | Table::getInstance() |
参数
- name
string
视图的名称- prefix
string
类前缀。可选。- config
array<string|int, mixed>
要传递给 Table::getInstance 的配置设置
返回值
Table|bool
表对象或布尔值 false(如果失败)
_getList
从数据库查询结果中获取对象数组。
_getList(\Joomla\Database\DatabaseQuery|string query, limitstart, limit) : object||string|int
自 |
3.0 |
---|---|
抛出 |
|
参数
- query
DatabaseQuery|string
查询。- limitstart
int
偏移量。- limit
int
记录数。
返回值
array<string|int, object>
结果数组。
_getListCount
返回查询的记录数。
_getListCount(\Joomla\Database\DatabaseQuery|string query) :
注意:此方法的当前实现假设 getListQuery() 返回一组唯一行,因此它使用 SELECT COUNT(*) 来计算行数。在 getListQuery() 使用 DISTINCT 的情况下,要么必须由派生模型类中的自定义实现覆盖此方法,要么应使用 GROUP BY 子句使集合唯一。
自 |
3.0 |
---|
参数
- query
DatabaseQuery|string
查询。
返回值
int
查询的行数。
addIncludePath
添加 \JModelLegacy 应在其中搜索模型的目录。您可以传递字符串或目录数组。
addIncludePath( path = '', prefix = '') : mixed||string|int
addTablePath
按后进先出 (LIFO) 顺序添加到模型表路径堆栈中。
addTablePath( path) :
自 |
3.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 将被移除,不会替换。通过 MVCFactory 获取模型 |
参数
- path
mixed
要添加的字符串形式的目录或数组形式的目录。
返回值
void
bootComponent
使用给定名称引导组件。
bootComponent( component) : \Joomla\CMS\Extension\ComponentInterface
cleanCache
清除缓存
cleanCache( group = null) :
自 |
3.0 |
---|
参数
- group
string
缓存组
返回值
void
createModelFromComponent
通过从前缀加载组件返回模型对象。
createModelFromComponent( type, prefix = '', mixed||string|int config = []) : \Joomla\CMS\MVC\Model\ModelInterface|null
自 |
4.0.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 将被移除,不会替换 |
参数
- type
string
要实例化的模型类型- prefix
string
模型类名称的前缀。可选。- config
array<string|int, mixed>
模型的配置数组。可选。
返回值
ModelInterface|null
ModelInterface 实例或 null(如果失败)
def
如果尚未分配,则设置默认值
def( property, default = null) :
自 |
1.7.0 |
---|---|
已弃用 |
4.3.0 将在 6.0 中移除 不应再使用定义动态属性 |
参数
- property
string
属性的名称。- default
mixed
默认值。
返回值
混合
dispatchEvent
在内部调度程序上分派给定的事件,并回退到全局调度程序。
dispatchEvent(\Joomla\Event\EventInterface event) :
自 |
4.1.0 |
---|---|
已弃用 |
4.4 将在 6.0 中移除。直接使用 $this->getDispatcher()。 |
参数
- event
EventInterface
事件
返回值
void
get
返回对象的属性或属性未设置时的默认值。
get( property, default = null) :
自 |
1.7.0 |
---|---|
参见 | CMSObject::getProperties() |
已弃用 |
4.3.0 将在 6.0 中移除 为属性创建正确的 getter 函数 |
参数
- property
string
属性的名称。- default
mixed
默认值。
返回值
mixed
属性的值。
getCacheControllerFactory
获取 CacheControllerFactoryInterface。
getCacheControllerFactory() : \Joomla\CMS\Cache\CacheControllerFactoryInterface
getCurrentUser
返回当前用户,如果未设置,则返回全局应用程序的身份。这将在 6.0 中更改,并将返回空用户。
getCurrentUser() : \Joomla\CMS\User\User
getDbo
获取数据库驱动程序。
getDbo() : \Joomla\Database\DatabaseInterface
自 |
4.2.0 |
---|---|
抛出 |
|
已弃用 |
4.3 将在 6.0 中移除 使用 getDatabase() 代替 例如:$model->getDatabase(); |
返回值
DatabaseInterface
数据库驱动程序。
getDispatcher
获取事件调度程序。
getDispatcher() : \Joomla\Event\DispatcherInterface
进行覆盖是为了保持与旧版组件的向后兼容性。待办事项:在 6.0 中删除覆盖
自 |
4.4.0 |
---|---|
抛出 |
|
返回值
DispatcherInterface
getError
获取最新的错误消息。
getError( i = null, toString = true) :
自 |
1.7.0 |
---|---|
已弃用 |
3.1.4 将在 6.0 中移除 将被移除,不会替换 捕获引发的异常,而不是 getError |
参数
- i
int
选项错误索引。- toString
bool
指示 Exception 对象是否应返回其错误消息。
返回值
string
错误消息
getErrors
返回所有错误(如果有)。
getErrors() : mixed||string|int
自 |
1.7.0 |
---|---|
已弃用 |
3.1.4 将在 6.0 中移除 将被移除,不会替换 捕获引发的异常,而不是 getErrors |
返回值
array<string|int, mixed>
错误消息数组。
getInstance
返回模型对象,始终创建它
getInstance( type, prefix = '', mixed||string|int config = []) : self|bool
自 |
3.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 将被移除,不会替换。通过 MVCFactory 获取模型 例如:Factory::getApplication->bootComponent('com_xxx')->getMVCFactory()->createModel($type, $prefix, $config); |
参数
- type
string
要实例化的模型类型- prefix
string
模型类名称的前缀。可选。- config
array<string|int, mixed>
模型的配置数组。可选。
返回值
self|bool
\JModelLegacy 实例或 false(如果失败)
getMVCFactory
返回 MVC 工厂。
getMVCFactory() : \Joomla\CMS\MVC\Factory\MVCFactoryInterface
getName
获取模型名称的方法
getName() :
模型名称。默认情况下使用类名解析,也可以通过在类构造函数中传递 $config['name'] 来设置。
自 |
4.0.0 |
---|---|
抛出 |
|
返回值
string
模型的名称
getProperties
返回对象属性的关联数组。
getProperties( public = true) : mixed||string|int
自 |
1.7.0 |
---|---|
参见 | CMSObject::get() |
已弃用 |
4.3.0 将在 6.0 中移除 为属性创建正确的 getter 函数 |
参数
- 公共
bool
如果为 true,则仅返回公共属性。
返回值
array<string|int, mixed>
getState
获取状态变量的方法。
getState( property = null, default = null) :
自 |
4.0.0 |
---|
参数
- property
string
可选参数名称- default
mixed
可选默认值
返回值
mixed
指定属性,省略时为状态对象
getStoreId
根据模型配置状态获取存储 ID 的方法。
getStoreId( id = '') :
这是必要的,因为模型由组件和可能需要不同数据集或不同排序要求的不同模块使用。
自 |
1.6 |
---|
参数
- id
string
存储 ID 的前缀。
返回值
string
存储 ID。
getTable
获取表对象的方法,如有必要,加载它。
getTable( name = '', prefix = '', mixed||string|int options = []) : \Joomla\CMS\Table\Table
自 |
3.0 |
---|---|
抛出 |
|
参数
- name
string
表名。可选。- prefix
string
类前缀。可选。- options
array<string|int, mixed>
模型的配置数组。可选。
返回值
Table
表对象
isCheckedOut
检查给定记录是否由当前用户签出的方法
isCheckedOut(\stdClass item) :
参数
- item
stdClass
要检查的记录
返回值
bool
populateState
自动填充状态的方法。
populateState() :
此方法应每个实例化仅调用一次,并且设计为在第一次调用 getState() 方法时调用,除非设置了忽略请求的配置标志。
注意 |
在此方法中调用 getState 将导致递归。 |
---|---|
自 |
4.0.0 |
返回值
void
set
修改对象的属性,如果它不存在,则创建它。
set( property, value = null) :
自 |
1.7.0 |
---|---|
已弃用 |
4.3.0 将在 6.0 中移除 为属性创建正确的 setter 函数 |
参数
- property
string
属性的名称。- value
mixed
要设置的属性的值。
返回值
mixed
属性的先前值。
setCacheControllerFactory
设置要使用的缓存控制器工厂。
setCacheControllerFactory(\Joomla\CMS\Cache\CacheControllerFactoryInterface cacheControllerFactory = null) :
setCurrentUser
设置当前用户。
setCurrentUser(\Joomla\CMS\User\User currentUser) :
setDbo
设置数据库驱动。
setDbo(\Joomla\Database\DatabaseInterface db = null) :
自 |
4.2.0 |
---|---|
已弃用 |
4.3 将在 6.0 中移除 使用 setDatabase() 代替 示例:$model->setDatabase($db); |
参数
- db
DatabaseInterface|null
数据库驱动。
返回值
void
setError
添加错误消息。
setError( error) :
自 |
1.7.0 |
---|---|
已弃用 |
3.1.4 将在 6.0 中移除 将被移除且无替代方案 抛出异常而不是使用 setError |
参数
- error
string
错误消息。
返回值
void
setMVCFactory
设置 MVC 工厂。
setMVCFactory(\Joomla\CMS\MVC\Factory\MVCFactoryInterface mvcFactory) :
setProperties
根据命名数组/哈希设置对象属性。
setProperties( properties) :
自 |
1.7.0 |
---|---|
参见 | CMSObject::set() |
已弃用 |
4.3.0 将在 6.0 中移除 为属性创建正确的 setter 函数 |
参数
- properties
mixed
关联数组或其他对象。
返回值
bool
setState
设置状态变量的方法。
setState( property, value = null) :
自 |
4.0.0 |
---|
参数
- property
string
属性的名称- value
mixed
要设置的属性值或 null
返回值
mixed
属性的先前值,如果未设置则为 null
属性
_errors
错误消息或异常对象的数组。
自 |
1.7.0 |
---|---|
已弃用 |
3.1.4 JError 已弃用 |
类型
array<string|int, mixed>
__state_set
指示内部状态是否已设置
自 |
4.0.0 |
---|
类型
bool
name
模型(基础)名称
自 |
4.0.0 |
---|
类型
string
paths
包含路径
自 |
4.0.0 |
---|
类型
array<string|int, mixed>
cacheControllerFactory
CacheControllerFactoryInterface
option
组件的 URL 选项。
自 |
3.0 |
---|
类型
string
event_clean_cache
清除缓存时触发的事件。
自 |
3.0 |
---|
类型
string
_item
一个项目。
自 |
1.6 |
---|
类型
array<string|int, mixed>
_context
模型上下文字符串。
自 |
1.6 |
---|
类型
string