Files
@ 654a62c4f366
Branch filter:
Location: hot67beta/components/com_contact/views/category/tmpl/default.php
654a62c4f366
4.2 KiB
text/x-php
menubar 11 to 30 and revert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | <?php
/**
* $Id: default.php 10967 2008-09-26 00:01:51Z ian $
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
$cparams =& JComponentHelper::getParams('com_media');
?>
<?php if ( $this->params->get( 'show_page_title', 1 ) ) : ?>
<div class="componentheading<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo $this->escape($this->params->get('page_title')); ?>
</div>
<?php endif; ?>
<div class="contentpane<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php if ($this->category->image || $this->category->description) : ?>
<div class="contentdescription<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php if ($this->params->get('image') != -1 && $this->params->get('image') != '') : ?>
<img src="<?php echo $this->baseurl .'/'. 'images/stories' . '/'. $this->params->get('image'); ?>" align="<?php echo $this->params->get('image_align'); ?>" hspace="6" alt="<?php echo JText::_( 'Contacts' ); ?>" />
<?php elseif ($this->category->image) : ?>
<img src="<?php echo $this->baseurl .'/'. 'images/stories' . '/'. $this->category->image; ?>" align="<?php echo $this->category->image_position; ?>" hspace="6" alt="<?php echo JText::_( 'Contacts' ); ?>" />
<?php endif; ?>
<?php echo $this->category->description; ?>
</div>
<?php endif; ?>
<script language="javascript" type="text/javascript">
function tableOrdering( order, dir, task ) {
var form = document.adminForm;
form.filter_order.value = order;
form.filter_order_Dir.value = dir;
document.adminForm.submit( task );
}
</script>
<form action="<?php echo $this->action; ?>" method="post" name="adminForm">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<thead>
<tr>
<td align="right" colspan="6">
<?php if ($this->params->get('show_limit')) :
echo JText::_('Display Num') .' ';
echo $this->pagination->getLimitBox();
endif; ?>
</td>
</tr>
</thead>
<tfoot>
<tr>
<td align="center" colspan="6" class="sectiontablefooter<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo $this->pagination->getPagesLinks(); ?>
</td>
</tr>
<tr>
<td colspan="6" align="right">
<?php echo $this->pagination->getPagesCounter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php if ($this->params->get( 'show_headings' )) : ?>
<tr>
<td width="5" align="right" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_('Num'); ?>
</td>
<td height="20" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JHTML::_('grid.sort', 'Name', 'cd.name', $this->lists['order_Dir'], $this->lists['order'] ); ?>
</td>
<?php if ( $this->params->get( 'show_position' ) ) : ?>
<td height="20" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JHTML::_('grid.sort', 'Position', 'cd.con_position', $this->lists['order_Dir'], $this->lists['order'] ); ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_email' ) ) : ?>
<td height="20" width="20%" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_( 'Email' ); ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_telephone' ) ) : ?>
<td height="20" width="15%" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_( 'Phone' ); ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_mobile' ) ) : ?>
<td height="20" width="15%" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_( 'Mobile' ); ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_fax' ) ) : ?>
<td height="20" width="15%" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_( 'Fax' ); ?>
</td>
<?php endif; ?>
</tr>
<?php endif; ?>
<?php echo $this->loadTemplate('items'); ?>
</tbody>
</table>
<input type="hidden" name="option" value="com_contact" />
<input type="hidden" name="catid" value="<?php echo $this->category->id;?>" />
<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" />
<input type="hidden" name="filter_order_Dir" value="" />
</form>
</div>
|