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


PHP ClassInfo::has_method_from方法代码示例

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


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

示例1: isEndofLine

 /**
  * Version viewer must only be added at if this is the final getCMSFields for a class.
  * in order to avoid having to rename all fields from eg Root.Main to Root.Current.Main
  * To do this we test if getCMSFields is from the current class
  */
 public function isEndofLine($className)
 {
     $methodFromClass = ClassInfo::has_method_from($this->ClassName, 'getCMSFields', $className);
     if ($methodFromClass) {
         return true;
     }
 }
开发者ID:nyeholt,项目名称:silverstripe-elemental,代码行数:12,代码来源:BaseElement.php

示例2: get_extra_config_sources

 public static function get_extra_config_sources($class = null)
 {
     if ($class === null) {
         $class = get_called_class();
     }
     // If this class is unextendable, NOP
     if (in_array($class, self::$unextendable_classes)) {
         return;
     }
     // Variable to hold sources in
     $sources = null;
     // Get a list of extensions
     $extensions = Config::inst()->get($class, 'extensions', Config::UNINHERITED | Config::EXCLUDE_EXTRA_SOURCES);
     if ($extensions) {
         // Build a list of all sources;
         $sources = array();
         foreach ($extensions as $extension) {
             list($extensionClass, $extensionArgs) = self::parse_class_spec($extension);
             $sources[] = $extensionClass;
             if (!ClassInfo::has_method_from($extensionClass, 'add_to_class', 'Extension')) {
                 Deprecation::notice('4.0', "add_to_class deprecated on {$extensionClass}. Use get_extra_config instead");
             }
             call_user_func(array($extensionClass, 'add_to_class'), $class, $extensionClass, $extensionArgs);
             foreach (array_reverse(ClassInfo::ancestry($extensionClass)) as $extensionClassParent) {
                 if (ClassInfo::has_method_from($extensionClassParent, 'get_extra_config', $extensionClassParent)) {
                     $extras = $extensionClassParent::get_extra_config($class, $extensionClass, $extensionArgs);
                     if ($extras) {
                         $sources[] = $extras;
                     }
                 }
             }
         }
     }
     return $sources;
 }
开发者ID:hpeide,项目名称:silverstripe-framework,代码行数:35,代码来源:Object.php


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