當前位置: 首頁>>代碼示例>>PHP>>正文


PHP vB_DataManager::vB_DataManager方法代碼示例

本文整理匯總了PHP中vB_DataManager::vB_DataManager方法的典型用法代碼示例。如果您正苦於以下問題:PHP vB_DataManager::vB_DataManager方法的具體用法?PHP vB_DataManager::vB_DataManager怎麽用?PHP vB_DataManager::vB_DataManager使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vB_DataManager的用法示例。


在下文中一共展示了vB_DataManager::vB_DataManager方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_ThreadPost(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     if (!is_subclass_of($this, 'vB_DataManager_ThreadPost')) {
         trigger_error("Direct Instantiation of vB_DataManager_ThreadPost class prohibited.", E_USER_ERROR);
     }
     parent::vB_DataManager($registry, $errtype);
 }
開發者ID:benyamin20,項目名稱:vbregistration,代碼行數:13,代碼來源:class_dm_threadpost.php

示例2: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_Content_Read(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     if (!$this->hook_start) {
         ($hook = vBulletinHook::fetch_hook('contentread_start')) ? eval($hook) : false;
     }
 }
開發者ID:0hyeah,項目名稱:yurivn,代碼行數:13,代碼來源:class_dm_content_read.php

示例3:

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_Deletionlog(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     if (!is_subclass_of($this, 'vB_DataManager_Deletionlog')) {
         trigger_error('Direct Instantiation of vB_DataManager_Deletionlog prohibited.', E_USER_ERROR);
         return NULL;
     }
     parent::vB_DataManager($registry, $errtype);
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:14,代碼來源:class_dm_deletionlog.php

示例4: __construct

	/**
	* Constructor - checks that the registry object has been passed correctly.
	*
	* @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
	* @param	integer		One of the ERRTYPE_x constants
	*/
	public function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::vB_DataManager($registry, $errtype);

		$this->storage = $registry->options['attachfile'] ? 'fs' : 'db';

		($hook = vBulletinHook::fetch_hook('attachdata_start')) ? eval($hook) : false;
	}
開發者ID:hungnv0789,項目名稱:vhtm,代碼行數:14,代碼來源:class_dm_attachment.php

示例5: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_Picture(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     if (!is_subclass_of($this, 'vB_DataManager_Picture')) {
         trigger_error("Direct Instantiation of vB_DataManager_Picture class prohibited.", E_USER_ERROR);
     }
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('picturedata_start')) ? eval($hook) : false;
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:14,代碼來源:class_dm_picture.php

示例6: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_IP_Data(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     // Defaults.
     $this->set_info('ip', IPADDRESS);
     $this->set_info('altip', ALT_IP);
     if (!$this->hook_start) {
         ($hook = vBulletinHook::fetch_hook('ipdata_start')) ? eval($hook) : false;
     }
 }
開發者ID:0hyeah,項目名稱:yurivn,代碼行數:16,代碼來源:class_dm_ip_data.php

示例7: __construct

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 public function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('stylevardata_start')) ? eval($hook) : false;
 }
開發者ID:0hyeah,項目名稱:yurivn,代碼行數:11,代碼來源:class_dm_stylevar.php

示例8: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_Album(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('albumdata_start')) ? eval($hook) : false;
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:11,代碼來源:class_dm_album.php

示例9: eval

	/**
	* Constructor - checks that the registry object has been passed correctly.
	*
	* @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
	* @param	integer		One of the ERRTYPE_x constants
	*/
	function vB_DataManager_Cms_Layout(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::vB_DataManager($registry, $errtype);

		($hook = vBulletinHook::fetch_hook('cms_layout_start')) ? eval($hook) : false;
	}
開發者ID:hungnv0789,項目名稱:vhtm,代碼行數:12,代碼來源:class_dm_cms_layout.php

示例10: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_SocialGroup(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('socgroupdata_start')) ? eval($hook) : false;
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:11,代碼來源:class_dm_socialgroup.php

示例11:

 function vB_DataManager_PostTemplates(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
 }
開發者ID:rcdesign-cemetery,項目名稱:vb-foreign_mod_fixes,代碼行數:4,代碼來源:class_dm_posttemplates.php

示例12: eval

	/**
	* Constructor - checks that the registry object has been passed correctly.
	*
	* @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
	* @param	integer		One of the ERRTYPE_x constants
	*/
	function vB_DataManager_Blog_Category(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::vB_DataManager($registry, $errtype);

		($hook = vBulletinHook::fetch_hook('blog_categorydata_start')) ? eval($hook) : false;
	}
開發者ID:hungnv0789,項目名稱:vhtm,代碼行數:12,代碼來源:class_dm_blog_category.php

示例13: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_PictureComment(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('picturecommentdata_start')) ? eval($hook) : false;
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:11,代碼來源:class_dm_picturecomment.php

示例14: eval

	/**
	* Constructor - checks that the registry object has been passed correctly.
	*
	* @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
	* @param	integer		One of the ERRTYPE_x constants
	*/
	function vB_DataManager_vBCms_Widget(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::vB_DataManager($registry, $errtype);

		($hook = vBulletinHook::fetch_hook('vbcms_widgetdm_start')) ? eval($hook) : false;
	}
開發者ID:hungnv0789,項目名稱:vhtm,代碼行數:12,代碼來源:class_dm_cms_widget.php

示例15: eval

 /**
  * Constructor - checks that the registry object has been passed correctly.
  *
  * @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
  * @param	integer		One of the ERRTYPE_x constants
  */
 function vB_DataManager_Pt_IssueNote(&$registry, $errtype = ERRTYPE_STANDARD)
 {
     parent::vB_DataManager($registry, $errtype);
     ($hook = vBulletinHook::fetch_hook('pt_issuenotedata_start')) ? eval($hook) : false;
 }
開發者ID:holandacz,項目名稱:nb4,代碼行數:11,代碼來源:class_dm_pt_issuenote.php


注:本文中的vB_DataManager::vB_DataManager方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。