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


PHP DB_DataObject::findTableFile方法代码示例

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


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

示例1: checkIfDoExists

 function checkIfDoExists($table)
 {
     OA_Dal::_setupDataObjectOptions();
     global $_DB_DATAOBJECT;
     if (!is_array($_DB_DATAOBJECT['CONFIG']['class_location'])) {
         $location = $_DB_DATAOBJECT['CONFIG']['class_location'];
         $fileExists = DB_DataObject::findTableFile($location, $table);
     } else {
         foreach ($_DB_DATAOBJECT['CONFIG']['class_location'] as $k => $location) {
             $fileExists = DB_DataObject::findTableFile($location, $table);
             if ($fileExists) {
                 break;
             }
         }
     }
     return $fileExists;
 }
开发者ID:akirsch,项目名称:revive-adserver,代码行数:17,代码来源:Dal.php

示例2: _autoloadClass

 /**
  * autoload Class
  *
  * @param  string  $class  Class
  * @access private
  * @return string classname on Success
  */
 function _autoloadClass($class)
 {
     global $_DB_DATAOBJECT;
     if (empty($_DB_DATAOBJECT['CONFIG'])) {
         DB_DataObject::_loadConfig();
     }
     $class_prefix = empty($_DB_DATAOBJECT['CONFIG']['class_prefix']) ? '' : $_DB_DATAOBJECT['CONFIG']['class_prefix'];
     $table = substr($class, strlen($class_prefix));
     // only include the file if it exists - and barf badly if it has parse errors :)
     if (!empty($_DB_DATAOBJECT['CONFIG']['proxy']) || empty($_DB_DATAOBJECT['CONFIG']['class_location'])) {
         return false;
     }
     // CHANGED FOR PLUGINS
     // array of plugin class locations
     // see DAL _setupDataObjectOptions
     if (!is_array($_DB_DATAOBJECT['CONFIG']['class_location'])) {
         $location = $_DB_DATAOBJECT['CONFIG']['class_location'];
         $file = DB_DataObject::findTableFile($location, $table);
     } else {
         foreach ($_DB_DATAOBJECT['CONFIG']['class_location'] as $k => $location) {
             $file = DB_DataObject::findTableFile($location, $table);
             if ($file) {
                 break;
             }
         }
     }
     if (!$file) {
         DB_DataObject::raiseError("autoload:Could not find class {$class} using class_location value", DB_DATAOBJECT_ERROR_INVALIDCONFIG);
         return false;
     }
     include_once $file;
     $ce = substr(phpversion(), 0, 1) > 4 ? class_exists($class, false) : class_exists($class);
     if (!$ce) {
         DB_DataObject::raiseError("autoload:Could not autoload {$class}", DB_DATAOBJECT_ERROR_INVALIDCONFIG);
         return false;
     }
     return $class;
 }
开发者ID:villos,项目名称:tree_admin,代码行数:45,代码来源:DataObject.php


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