本文整理汇总了PHP中JUDownloadHelper::getFieldGroupOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP JUDownloadHelper::getFieldGroupOptions方法的具体用法?PHP JUDownloadHelper::getFieldGroupOptions怎么用?PHP JUDownloadHelper::getFieldGroupOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JUDownloadHelper
的用法示例。
在下文中一共展示了JUDownloadHelper::getFieldGroupOptions方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInput
protected function getInput()
{
$html = '';
$db = JFactory::getDbo();
$options = JUDownloadHelper::getFieldGroupOptions();
if ($this->element['usenone'] == 'true') {
array_unshift($options, array('value' => '0', 'text' => JText::_('COM_JUDOWNLOAD_NONE')));
}
if ($this->element['useinherit'] == 'true') {
$appendInherit = "";
if ($this->form->getValue("id")) {
$appendInherit = " ( " . JText::_('COM_JUDOWNLOAD_NONE') . " )";
if ($this->form->getValue("id") > 0) {
$catObj = JUDownloadHelper::getCategoryById($this->form->getValue("parent_id"));
if ($catObj->fieldgroup_id > 1) {
$query = "SELECT name, published FROM #__judownload_fields_groups WHERE id = " . (int) $catObj->fieldgroup_id . " AND id != 1";
$db->setQuery($query);
$fieldgroup = $db->loadObject();
$groupName = $fieldgroup->published != 1 ? "[" . $fieldgroup->name . "]" : $fieldgroup->name;
$appendInherit = "( " . $groupName . " )";
}
}
}
array_unshift($options, array('value' => '-1', 'text' => JText::_('COM_JUDOWNLOAD_INHERIT') . $appendInherit));
} else {
array_unshift($options, array('value' => '', 'text' => JText::_('COM_JUDOWNLOAD_SELECT_FIELD_GROUP')));
}
$required_class = $this->element['required'] == 'true' ? 'required' : '';
$attributes = "class=\"inputbox {$required_class}\"";
$html .= JHtml::_('select.genericlist', $options, $this->name, $attributes, 'value', 'text', $this->value, $this->id);
return $html;
}
示例2: getOptions
protected function getOptions()
{
$options = array();
foreach ($this->element->children() as $option) {
if ($option->getName() != 'option') {
continue;
}
$tmp = JHtml::_('select.option', (string) $option['value'], JText::alt(trim((string) $option), preg_replace('/[^a-zA-Z0-9_\\-]/', '_', $this->fieldname)), 'value', 'text', (string) $option['disabled'] == 'true');
$tmp->class = (string) $option['class'];
$tmp->onclick = (string) $option['onclick'];
$options[] = $tmp;
}
reset($options);
$_options = JUDownloadHelper::getFieldGroupOptions(false, false);
if ($_options) {
$options = array_merge($options, $_options);
}
return $options;
}
示例3: array
?>
</button>
<button class="btn" rel="tooltip" type="button"
title="<?php
echo JText::_('JSEARCH_FILTER_CLEAR');
?>
"
onclick="document.id('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR');
?>
</button>
</div>
<div class="filter-select">
<?php
$options = JUDownloadHelper::getFieldGroupOptions(false, false);
array_unshift($options, array('value' => '', 'text' => JText::_('COM_JUDOWNLOAD_ALL_GROUPS')));
?>
<div class="pull-right hidden-phone">
<?php
echo JHtml::_('select.genericlist', $options, 'filter_group', 'onchange="Joomla.submitform();" class="input-medium"', 'value', 'text', $this->escape($this->state->get('filter.group_id', '')), "filter_group");
?>
</div>
<?php
$options = JUDownloadHelper::getPluginOptions('field', 0);
array_unshift($options, array('value' => '', 'text' => JText::_('COM_JUDOWNLOAD_SELECT_FIELD_TYPE')));
?>
<div class="pull-right hidden-phone">
<?php
echo JHtml::_('select.genericlist', $options, 'filter_plugin', 'onchange="Joomla.submitform();" class="input-medium"', 'value', 'text', $this->escape($this->state->get('filter.plugin_id', '')), "filter_plugin");
?>
示例4: getInput
protected function getInput()
{
$html = '';
$db = JFactory::getDbo();
$core_plugin = false;
if ($this->form->getValue("id") && $this->form->getValue("plugin_id")) {
$query = "SELECT core FROM #__judownload_plugins WHERE id = " . $this->form->getValue("plugin_id");
$db->setQuery($query);
$core_plugin = $db->loadResult();
}
if ($core_plugin) {
$query = "SELECT name FROM #__judownload_fields_groups WHERE id = " . $this->value;
$db->setQuery($query);
$group_name = $db->loadResult();
$html .= '<span class="readonly">' . $group_name . '</span>';
$html .= '<input type="hidden" name="' . $this->name . '" value="1" />';
} else {
$document = JFactory::getDocument();
$script = "function changeFieldGroup(self, select ,value){\r\n\t\t\t\t\t\t\tif(value){\r\n\t\t\t\t\t\t\t\tif (self.value != select){ alert('" . JText::_('COM_JUDOWNLOAD_CHANGE_FIELD_GROUP_WARNING') . "');}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\treturn true;\r\n\t\t\t\t\t\t}";
$document->addScriptDeclaration($script);
$app = JFactory::getApplication();
if ($app->input->get('view') == 'field') {
$options = JUDownloadHelper::getFieldGroupOptions(true, false);
} else {
$options = JUDownloadHelper::getFieldGroupOptions();
}
if ($this->element['usenone'] == 'true') {
array_unshift($options, array('value' => '0', 'text' => JText::_('COM_JUDOWNLOAD_NONE')));
}
if ($this->element['useinherit'] == 'true') {
$appendInherit = "";
if ($this->form->getValue("id")) {
$appendInherit = " ( " . JText::_('COM_JUDOWNLOAD_NONE') . " )";
if ($this->form->getValue("id") > 0) {
$catObj = JUDownloadHelper::getCategoryById($this->form->getValue("parent_id"));
if ($catObj->fieldgroup_id > 1) {
$query = "SELECT name, published FROM #__judownload_fields_groups WHERE id = " . (int) $catObj->fieldgroup_id . " AND id != 1";
$db->setQuery($query);
$fieldgroup = $db->loadObject();
$groupName = $fieldgroup->published != 1 ? "[" . $fieldgroup->name . "]" : $fieldgroup->name;
$appendInherit = "( " . $groupName . " )";
}
}
}
array_unshift($options, array('value' => '-1', 'text' => JText::_('COM_JUDOWNLOAD_INHERIT') . $appendInherit));
} else {
array_unshift($options, array('value' => '', 'text' => JText::_('COM_JUDOWNLOAD_SELECT_FIELD_GROUP')));
}
$required_class = $this->element['required'] == 'true' ? 'required' : '';
if ($app->input->get('view') == 'field') {
$canChange = true;
if ($this->form->getValue('id')) {
$query = "SELECT COUNT(*) FROM #__judownload_fields_values WHERE field_id = " . $this->form->getValue('id');
$db->setQuery($query);
$canChange = $db->loadResult() ? false : true;
}
if ($canChange) {
$attributes = "class=\"inputbox {$required_class}\"";
$html .= JHtml::_('select.genericlist', $options, $this->name, $attributes, 'value', 'text', $this->value, $this->id);
} else {
$attributes = "class=\"inputbox\" disabled";
$html .= JHtml::_('select.genericlist', $options, "_" . $this->name, $attributes, 'value', 'text', $this->value, $this->id);
$html .= "<input class=\"{$required_class}\" type=\"hidden\" value=\"" . $this->value . "\" name=\"" . $this->name . "\" />";
}
} else {
$onchange = "onchange=\"changeFieldGroup(this, " . $this->value . ", " . $this->form->getValue("fieldgroup_id") . " );\"";
$attributes = "class=\"inputbox {$required_class}\" {$onchange}";
$html .= JHtml::_('select.genericlist', $options, $this->name, $attributes, 'value', 'text', $this->value, $this->id);
}
}
return $html;
}