当前位置: 首页>>代码示例>>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;未经允许,请勿转载。