本文整理匯總了PHP中FOFModel::getState方法的典型用法代碼示例。如果您正苦於以下問題:PHP FOFModel::getState方法的具體用法?PHP FOFModel::getState怎麽用?PHP FOFModel::getState使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FOFModel
的用法示例。
在下文中一共展示了FOFModel::getState方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: renderFormBrowse
//.........這裏部分代碼省略.........
continue;
}
// If it's a sortable field, add to the list of sortable fields
if ($sortable) {
$sortFields[$headerField->name] = JText::_($headerField->label);
}
// Get the table data width, if set
if (!empty($tdwidth)) {
$tdwidth = 'width="' . $tdwidth . '"';
} else {
$tdwidth = '';
}
if (!empty($header)) {
$header_html .= "\t\t\t\t\t<th {$tdwidth}>" . PHP_EOL;
$header_html .= "\t\t\t\t\t\t" . $header;
$header_html .= "\t\t\t\t\t</th>" . PHP_EOL;
}
if (FOFPlatform::getInstance()->checkVersion(JVERSION, '3.0', 'ge')) {
// Joomla! 3.0 or later
if (!empty($filter)) {
$filter_html .= '<div class="filter-search btn-group pull-left">' . "\n";
$filter_html .= "\t" . '<label for="title" class="element-invisible">';
$filter_html .= JText::_($headerField->label);
$filter_html .= "</label>\n";
$filter_html .= "\t{$filter}\n";
$filter_html .= "</div>\n";
if (!empty($buttons)) {
$filter_html .= '<div class="btn-group pull-left hidden-phone">' . "\n";
$filter_html .= "\t{$buttons}\n";
$filter_html .= '</div>' . "\n";
}
} elseif (!empty($options)) {
$label = $headerField->label;
JHtmlSidebar::addFilter('- ' . JText::_($label) . ' -', (string) $headerField->name, JHtml::_('select.options', $options, 'value', 'text', $model->getState($headerField->name, ''), true));
}
} else {
// Joomla! 2.5
$filter_html .= "\t\t\t\t\t<td>" . PHP_EOL;
if (!empty($filter)) {
$filter_html .= "\t\t\t\t\t\t{$filter}" . PHP_EOL;
if (!empty($buttons)) {
$filter_html .= '<div class="btn-group pull-left hidden-phone">' . PHP_EOL;
$filter_html .= "\t\t\t\t\t\t{$buttons}" . PHP_EOL;
$filter_html .= '</div>' . PHP_EOL;
}
} elseif (!empty($options)) {
$label = $headerField->label;
$emptyOption = JHtml::_('select.option', '', '- ' . JText::_($label) . ' -');
array_unshift($options, $emptyOption);
$attribs = array('onchange' => 'document.adminForm.submit();');
$filter = JHtml::_('select.genericlist', $options, $headerField->name, $attribs, 'value', 'text', $headerField->value, false, true);
$filter_html .= "\t\t\t\t\t\t{$filter}" . PHP_EOL;
}
$filter_html .= "\t\t\t\t\t</td>" . PHP_EOL;
}
}
}
// Start the form
$filter_order = $form->getView()->getLists()->order;
$filter_order_Dir = $form->getView()->getLists()->order_Dir;
$html .= '<form action="index.php" method="post" name="adminForm" id="adminForm">' . PHP_EOL;
if (FOFPlatform::getInstance()->checkVersion(JVERSION, '3.0', 'ge')) {
// Joomla! 3.0+
// Get and output the sidebar, if present
$sidebar = JHtmlSidebar::render();
if ($show_filters && !empty($sidebar)) {