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


PHP ObjectConfig::get方法代码示例

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


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

示例1: get

 /**
  * Implements lazy loading of the pages config property.
  *
  * @param string
  * @return mixed
  */
 public function get($name, $default = null)
 {
     if ($name == 'pages' && !isset($this->pages)) {
         $this->pages = $this->_pages();
     }
     return parent::get($name);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:13,代码来源:paginator.php

示例2: getIdentityKey

 /**
  * Get the identity key
  *
  * @return mixed
  */
 public function getIdentityKey()
 {
     return ObjectConfig::get('identity_key');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:context.php

示例3: get

 /**
  * Get an command property or attribute
  *
  * If an command property exists the property will be returned, otherwise the attribute will be returned. If no
  * property or attribute can be found the method will return NULL.
  *
  * @param  string $name    The property name
  * @param  mixed  $default The default value
  * @return mixed|null  The property value
  */
 public final function get($name, $default = null)
 {
     $method = 'get' . ucfirst($name);
     if (!method_exists($this, $method)) {
         $value = parent::get($name);
     } else {
         $value = $this->{$method}();
     }
     return $value;
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:20,代码来源:command.php

示例4: getAffected

 /**
  * Get the number of affected rows
  *
  * @return integer
  */
 public function getAffected()
 {
     return ObjectConfig::get('affected');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:context.php

示例5: getParameters

 /**
  * Get the view parameters
  *
  * @return array
  */
 public function getParameters()
 {
     return ObjectConfig::get('parameters');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:context.php

示例6: getEntity

 /**
  * Get the model entity
  *
  * @return ModelEntityInterface
  */
 public function getEntity()
 {
     return ObjectConfig::get('entity');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:model.php

示例7: getLayout

 /**
  * Get the view layout
  *
  * @return string
  */
 public function getLayout()
 {
     return ObjectConfig::get('layout');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:template.php

示例8: getQuery

 /**
  * Get the model query
  *
  * @return DatabaseQueryInterface
  */
 public function getQuery()
 {
     return ObjectConfig::get('query');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:database.php

示例9: getUser

 /**
  * Get the user object
  *
  * @return UserInterface
  */
 public function getUser()
 {
     return ObjectConfig::get('user');
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:9,代码来源:context.php


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