Skip to content

Commit

Permalink
add hathor override
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepereiradasilva committed Nov 27, 2016
1 parent acf7b41 commit ce267fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@
<th>
<?php echo JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_FOLDER', 'folder', $listDirn, $listOrder); ?>
</th>
<th class="nowrap center">
<?php echo JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_CORE', 'core', $listDirn, $listOrder); ?>
</th>
<th class="nowrap id-col">
<?php echo JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_ID', 'extension_id', $listDirn, $listOrder); ?>
</th>
Expand Down Expand Up @@ -111,6 +114,9 @@
<td class="center">
<?php echo @$item->folder != '' ? $item->folder : JText::_('COM_INSTALLER_TYPE_NONAPPLICABLE'); ?>
</td>
<td class="center">
<?php echo ($item->core ? JText::_('JYES') : JText::_('JNO')); ?>
</td>
<td>
<?php echo $item->extension_id ?>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@
<?php echo JHtml::_('select.options', array_merge(InstallerHelper::getExtensionGroupes(), array('*' => JText::_('COM_INSTALLER_VALUE_FOLDER_NONAPPLICABLE'))), 'value', 'text', $this->state->get('filter.folder'), true);?>
</select>

<label class="selectlabel" for="filter_core">
<?php echo JText::_('COM_INSTALLER_VALUE_CORE_SELECT'); ?>
</label>
<select name="filter_core" id="filter_core">
<option value=""><?php echo JText::_('COM_INSTALLER_VALUE_CORE_SELECT'); ?></option>
<?php echo JHtml::_('select.options', array('1' => JText::_('JYES'), '0' => JText::_('JNO')), 'value', 'text', $this->state->get('filter.core'), true); ?>
</select>

<button type="submit" id="filter-go">
<?php echo JText::_('JSUBMIT'); ?></button>

Expand Down

0 comments on commit ce267fa

Please sign in to comment.