本文整理汇总了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;
}
示例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;
}
示例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());
}
示例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;
}
示例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());
}
示例6: get
/**
* Get value
*
* @return integer
*/
public function get()
{
return (int) parent::get();
}