当前位置: 首页>>代码示例>>PHP>>正文


PHP XoopsPersistableObjectHandler::__construct方法代码示例

本文整理汇总了PHP中XoopsPersistableObjectHandler::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP XoopsPersistableObjectHandler::__construct方法的具体用法?PHP XoopsPersistableObjectHandler::__construct怎么用?PHP XoopsPersistableObjectHandler::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XoopsPersistableObjectHandler的用法示例。


在下文中一共展示了XoopsPersistableObjectHandler::__construct方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructor
  *
  * @param XoopsMySQLDatabase $db reference to the {@link XoopsDatabase} object
  * @param string             $table
  * @param string             $className
  * @param string             $keyName
  * @param string             $identifierName
  */
 public function __construct(XoopsMySQLDatabase $db, $table = '', $className = '', $keyName = '', $identifierName = '')
 {
     $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
     trigger_error("ArtObjectHandler is deprecated, instantiated from {$trace[0]['file']} line {$trace[0]['line']},");
     $this->db = $db;
     parent::__construct($db, $table, $className, $keyName, $identifierName);
 }
开发者ID:geekwright,项目名称:XoopsCore25,代码行数:16,代码来源:object.php

示例2:

 /**
  * @param null|object $db
  */
 function __construct($db)
 {
     parent::__construct($db, 'newblocks', 'SystemBlock', 'bid', 'title');
 }
开发者ID:RanLee,项目名称:Xoops_demo,代码行数:7,代码来源:block.php

示例3: __construct

 /**
  * @param null|XoopsDatabase $db
  */
 public function __construct(XoopsDatabase $db)
 {
     parent::__construct($db, 'block_module_link', 'SystemBlockLinkModule', 'block_id', 'module_id');
 }
开发者ID:geekwright,项目名称:XoopsCore25,代码行数:7,代码来源:blocklinkmodule.php

示例4: __construct

 /**
  * @param null|Connection $db
  */
 public function __construct(Connection $db = null)
 {
     parent::__construct($db, "priv_msgs", 'PmMessage', 'msg_id', 'subject');
 }
开发者ID:RanLee,项目名称:XoopsCore,代码行数:7,代码来源:message.php

示例5:

 function __construct(&$db)
 {
     parent::__construct($db, "spiders_user", 'SpidersSpiders_user', "spider_id", "uid");
 }
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:4,代码来源:spiders_user.php

示例6: __construct

 /**
  * PresenterCategoriesHandler constructor.
  * @param XoopsDatabase $db
  */
 public function __construct(XoopsDatabase $db)
 {
     parent::__construct($db, 'presenter_categories', 'PresenterCategories', 'cat_id', 'cat_title');
 }
开发者ID:mambax7,项目名称:presenter,代码行数:8,代码来源:categories.php

示例7: __construct

 public function __construct(&$db)
 {
     parent::__construct($db, "press_category", "PressCategory", "cat_id", "cat_name");
 }
开发者ID:yunsite,项目名称:xoopsdc,代码行数:4,代码来源:category.php

示例8: __construct

 /**
  * @param null|object $db
  */
 public function __construct(&$db)
 {
     parent::__construct($db, "publisher_files", 'PublisherFile', "fileid", "name");
 }
开发者ID:trabisdementia,项目名称:xuups,代码行数:7,代码来源:file.php

示例9:

 function __construct($db)
 {
     parent::__construct($db, 'profile_regstep', 'profileregstep', 'step_id', 'step_name');
 }
开发者ID:gauravsaxena21,项目名称:simantz,代码行数:4,代码来源:regstep.php

示例10:

 function __construct(&$db)
 {
     parent::__construct($db, "profile_profile", 'profileprofile', "profile_id");
     $this->_fHandler = xoops_getmodulehandler('field', 'profile');
 }
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:5,代码来源:profile.php

示例11: __construct

 /**
  * @param null|XoopsDatabase $db
  */
 public function __construct(XoopsDatabase $db)
 {
     $this->publisher =& PublisherPublisher::getInstance();
     parent::__construct($db, 'publisher_categories', 'PublisherCategory', 'categoryid', 'name');
 }
开发者ID:trabisdementia,项目名称:publisher,代码行数:8,代码来源:category.php

示例12:

 function __construct(&$db)
 {
     parent::__construct($db, 'profile_visibility', 'profilevisibility', 'field_id');
 }
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:4,代码来源:visibility.php

示例13: __construct

 public function __construct(\Xoops\Core\Database\Connection $db, $table = '', $className = '', $keyName = '', $identifierName = '')
 {
     parent::__construct($db, $table, $className, $keyName, $identifierName);
 }
开发者ID:RanLee,项目名称:XoopsCore,代码行数:4,代码来源:objectpersistableHandlerTest.php

示例14: __construct

 /**
  * @param null|object $db
  */
 public function __construct(&$db)
 {
     parent::__construct($db, "publisher_items", 'PublisherItem', "itemid", "title");
     $this->publisher = PublisherPublisher::getInstance();
 }
开发者ID:RanLee,项目名称:Xoops_demo,代码行数:8,代码来源:item.php


注:本文中的XoopsPersistableObjectHandler::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。