本文整理汇总了PHP中app\models\Setting::getAllIdName方法的典型用法代码示例。如果您正苦于以下问题:PHP Setting::getAllIdName方法的具体用法?PHP Setting::getAllIdName怎么用?PHP Setting::getAllIdName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Setting
的用法示例。
在下文中一共展示了Setting::getAllIdName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
public function init()
{
// actions
// translate
foreach ($this->actions as $actions => $name) {
$this->actions[$actions] = Yii::t('app', $name);
}
// actions values
$this->actions_values['taskdefined'] = TaskDefined::getAllIdName();
$this->actions_values['setting'] = Setting::getAllIdName();
$this->actions_values['rule'] = Rule::getAllIdName();
$this->actions_values['rulevalue'] = RuleValue::getAllIdName();
$this->actions_values['ruleextra'] = RuleExtra::getAllIdName();
$this->actions_values['ruledate'] = RuleDate::getAllIdName();
// values
// translate
foreach ($this->values as $values => $name) {
$this->values[$values] = Yii::t('app', $name);
}
// values_values
$this->values_values['taskdefined'] = TaskDefined::getAllIdName();
$this->values_values['setting'] = Setting::getAllIdName();
$this->values_values['rule'] = Rule::getAllIdName();
$this->values_values['rulevalue'] = RuleValue::getAllIdName();
$this->values_values['ruleextra'] = RuleExtra::getAllIdName();
$this->values_values['ruledate'] = RuleDate::getAllIdName();
//$this->values = array_merge($modelRule->values, $modelRule->actions);
//$this->values_values = $modelRule->values;
// create weights from 0 to 5
for ($weight = 0; $weight <= 4; $weight++) {
$this->weights[$weight] = $weight;
}
parent::init();
}
示例2: init
public function init()
{
// actions
// translate
foreach ($this->conditions as $conditions => $name) {
$this->conditions[$conditions] = Yii::t('app', $name);
}
// actions values
$this->conditions_values['taskdefined'] = TaskDefined::getAllIdName();
$this->conditions_values['setting'] = Setting::getAllIdName();
$this->conditions_values['rule'] = Rule::getAllIdName();
$this->conditions_values['rulevalue'] = RuleValue::getAllIdName();
$this->conditions_values['ruleextra'] = RuleExtra::getAllIdName();
$this->conditions_values['ruledate'] = RuleDate::getAllIdName();
// equations
// translate all equations
foreach ($this->equations as $key => $equation) {
$this->equations[$key] = Yii::t('app', $equation);
}
// key before value equations
foreach ($this->equations as $key => $equation) {
$this->equations[$key] = $key . ', ' . $equation;
}
// values
// translate
foreach ($this->values as $values => $name) {
$this->values[$values] = Yii::t('app', $name);
}
// values_values
$this->values_values['taskdefined'] = TaskDefined::getAllIdName();
$this->values_values['setting'] = Setting::getAllIdName();
$this->values_values['rule'] = Rule::getAllIdName();
$this->values_values['rulevalue'] = RuleValue::getAllIdName();
$this->values_values['ruleextra'] = RuleExtra::getAllIdName();
$this->values_values['ruledate'] = RuleDate::getAllIdName();
// create weights from 0 to 10
for ($weight = 0; $weight <= 10; $weight++) {
$this->weights[$weight] = $weight;
}
parent::init();
}