本文整理汇总了PHP中Fieldset::count方法的典型用法代码示例。如果您正苦于以下问题:PHP Fieldset::count方法的具体用法?PHP Fieldset::count怎么用?PHP Fieldset::count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Fieldset
的用法示例。
在下文中一共展示了Fieldset::count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: viewAll
/**
* Display all options
* @return void
*/
function viewAll()
{
global $DB, $USER;
$r = $DB->config->get(array('type!' => 'not_editable'), false, false, 'section,property');
$form = new Form();
$e = $this->may($USER, EDIT);
$lastSectionName = false;
$lastSection = false;
$sections = array();
while ($c = Database::fetchAssoc($r)) {
if ($lastSectionName != $c['section']) {
$lastSectionName = $c['section'];
if ($lastSection != false && $lastSection->count() == 0) {
array_pop($sections);
}
$sections[] = $lastSection = new Fieldset(ucwords(str_replace('_', ' ', $c['section'])));
}
$mult = false;
$a = false;
switch ($c['type']) {
case 'CSV':
if (is_array($c['value'])) {
$c['value'] = @join(',', $c['value']);
}
case 'text':
if ($e) {
$a = new Input(ucwords(__(str_replace('_', ' ', $c['property']))), 'conf[' . $c['section'] . '][' . $c['property'] . ']', $c['value'], null, __($c['description']));
} else {
$a = '<span class="property">' . ucwords(__(str_replace('_', ' ', $c['property']))) . ':</span> <span class="value">' . $c['value'] . '</span><span class="description">' . __($c['description']) . '</span>';
}
break;
case 'password':
if ($e) {
$a = new Password(ucwords(__(str_replace('_', ' ', $c['property']))), 'conf[' . $c['section'] . '][' . $c['property'] . ']', '********', null, __($c['description']));
} else {
$a = '<span class="property">' . ucwords(__(str_replace('_', ' ', $c['property']))) . ':</span> <span class="value">********</span><span class="description">' . __($c['description']) . '</span>';
}
break;
case 'set':
$mult = true;
case 'select':
if (is_array($c['set'])) {
if ($e) {
$a = new Select(ucwords(__(str_replace('_', ' ', $c['property']))), 'conf[' . $c['section'] . '][' . $c['property'] . ']', array_map('__', $c['set']), $c['value'], $mult, false, false, __($c['description']));
} else {
$a = '<span class="property">' . ucwords(__(str_replace('_', ' ', $c['property']))) . ':</span> <span class="value">' . @$c['set'][$c['value']] . '</span><span class="description">' . __($c['description']) . '</span>';
}
}
break;
case 'check':
if ($e) {
$a = new Checkbox(ucwords(__(str_replace('_', ' ', $c['property']))), 'conf[' . $c['section'] . '][' . $c['property'] . ']', $c['value'], $c['value'], false, __($c['description']));
} else {
$a = '<span class="property">' . ucwords(__(str_replace('_', ' ', $c['property']))) . ':</span> <span class="value">' . $c['value'] . '</span><span class="description">' . __($c['description']) . '</span>';
}
break;
}
if ($a) {
$lastSection->add($a);
}
}
if ($lastSection != false && $lastSection->count() == 0) {
array_pop($sections);
}
if ($e) {
return $form->collection($sections);
} else {
return join('', $sections);
}
}