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


PHP Value::get方法代码示例

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


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

示例1: get

 /**
  * Get a configuration value.
  *
  * Config Value names should be CamelCase
  */
 public static function get($name, $default = null)
 {
     if (array_key_exists($name, self::$cache)) {
         return self::$cache[$name];
     }
     if (array_key_exists('application.' . $name, self::$cache)) {
         return self::$cache['application.' . $name];
     }
     if (defined('BACKEND_WITH_DATABASE') && BACKEND_WITH_DATABASE) {
         $value = Value::get($name, null);
         //Retrieved from the DB
         if (!is_null($value)) {
             self::$cache[$name] = $value;
             return $value;
         }
     }
     $name = explode('.', $name);
     if (count($name) == 1) {
         array_unshift($name, 'application');
     }
     //Check the config file
     $result = Backend::getConfig($name, $default);
     self::$cache[implode('.', $name)] = $result;
     return $result;
 }
开发者ID:jrgns,项目名称:backend-php,代码行数:30,代码来源:ConfigValue.obj.php

示例2: html_display

 public function html_display($result)
 {
     $result = parent::html_display($result);
     if (Value::get(get_class($this) . '_commented', true) && Component::isActive('Comment')) {
         if ($result instanceof DBObject) {
             $comments = Comment::getComments($result->getMeta('table'), $result->getMeta('id'));
             Backend::addContent(Render::renderFile('comments.tpl.php', array('comment_list' => $comments)));
             if (Permission::check('create', 'comment')) {
                 $values = array('foreign_table' => $result->getMeta('table'), 'foreign_id' => $result->getMeta('id'));
                 Backend::addContent(Render::renderFile('comment.add.tpl.php', $values));
             }
         }
     }
     return $result;
 }
开发者ID:jrgns,项目名称:backend-php,代码行数:15,代码来源:CommentedController.obj.php

示例3: testSet_1

 /**
  * @covers Classes\Value\Value::set
  * @todo   Implement testSet().
  */
 public function testSet_1()
 {
     $this->object->set('One');
     $this->assertEquals('One', $this->object->get());
 }
开发者ID:vokson,项目名称:scad.constructor.php,代码行数:9,代码来源:StringValueTest.php

示例4: checkParameters

 public static function checkParameters($parameters)
 {
     $parameters = parent::checkParameters($parameters);
     if (Controller::$action == 'display') {
         $parameters[1] = array_key_exists(1, $parameters) ? $parameters[1] : 0;
         $parameters[2] = array_key_exists(2, $parameters) ? $parameters[2] : Value::get('TagContentListLength', 10);
     } else {
         if (in_array(Controller::$action, array('display'))) {
             if (!isset(Controller::$parameters[0])) {
                 $parameters[1] = 0;
             }
             if (!isset(Controller::$parameters[2])) {
                 $parameters[2] = Value::get('list_length', 5);
             }
         }
     }
     return $parameters;
 }
开发者ID:jrgns,项目名称:backend-php,代码行数:18,代码来源:Tag.obj.php

示例5: testSet_1

 /**
  * @covers Classes\Value\Value::set
  * @todo   Implement testSet().
  */
 public function testSet_1()
 {
     $this->object->set(5.5);
     $this->assertEquals(5.5, $this->object->get());
 }
开发者ID:vokson,项目名称:scad.constructor.php,代码行数:9,代码来源:FloatValueTest.php

示例6: get

 /**
  * Get value
  *
  * @return integer
  */
 public function get()
 {
     return (int) parent::get();
 }
开发者ID:emoveo,项目名称:sfm,代码行数:9,代码来源:Counter.php


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