當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。