Files
@ c7d7e38b2269
Branch filter:
Location: hot67beta/plugins/system/legacy/commonhtml.php
c7d7e38b2269
6.4 KiB
text/x-php
Initial import of the site.
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | <?php
/**
* @version $Id: commonhtml.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla.Legacy
* @subpackage 1.5
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* Legacy class, use {@link JHTML::_()} instead
*
* @deprecated As of version 1.5
* @package Joomla.Legacy
* @subpackage 1.5
*/
class mosCommonHTML
{
/**
* Legacy function, use {@link JHTML::_('legend');} instead
*
* @deprecated As of version 1.5
*/
function ContentLegend( )
{
JHTML::addIncludePath( JPATH_ADMINISTRATOR.DS.'components'.DS.'com_content'.DS.'html' );
JHTML::_('grid.legend');
}
/**
* Legacy function, deprecated
*
* @deprecated As of version 1.5
*/
function menuLinksContent( &$menus )
{
foreach( $menus as $menu ) {
?>
<tr>
<td colspan="2">
<hr />
</td>
</tr>
<tr>
<td width="90" valign="top">
<?php echo JText::_( 'Menu' ); ?>
</td>
<td>
<a href="javascript:go2('go2menu','<?php echo $menu->menutype; ?>');" title="<?php echo JText::_( 'Go to Menu' ); ?>">
<?php echo $menu->menutype; ?></a>
</td>
</tr>
<tr>
<td width="90" valign="top">
<?php echo JText::_( 'Link Name' ); ?>
</td>
<td>
<strong>
<a href="javascript:go2('go2menuitem','<?php echo $menu->menutype; ?>','<?php echo $menu->id; ?>');" title="<?php echo JText::_( 'Go to Menu Item' ); ?>">
<?php echo $menu->name; ?></a>
</strong>
</td>
</tr>
<tr>
<td width="90" valign="top">
<?php echo JText::_( 'State' ); ?>
</td>
<td>
<?php
switch ( $menu->published ) {
case -2:
echo '<font color="red">'. JText::_( 'Trashed' ) .'</font>';
break;
case 0:
echo JText::_( 'UnPublished' );
break;
case 1:
default:
echo '<font color="green">'. JText::_( 'Published' ) .'</font>';
break;
}
?>
</td>
</tr>
<?php
}
?>
<tr>
<td colspan="2">
<input type="hidden" name="menu" value="" />
<input type="hidden" name="menuid" value="" />
</td>
</tr>
<?php
}
/**
* Legacy function, deprecated
*
* @deprecated As of version 1.5
*/
function menuLinksSecCat( &$menus )
{
$i = 1;
foreach( $menus as $menu ) {
?>
<fieldset>
<legend align="right"> <?php echo $i; ?>. </legend>
<table class="admintable">
<tr>
<td valign="top" class="key">
<?php echo JText::_( 'Menu' ); ?>
</td>
<td>
<a href="javascript:go2('go2menu','<?php echo $menu->menutype; ?>');" title="<?php echo JText::_( 'Go to Menu' ); ?>">
<?php echo $menu->menutype; ?></a>
</td>
</tr>
<tr>
<td valign="top" class="key">
<?php echo JText::_( 'Type' ); ?>
</td>
<td>
<?php echo $menu->type; ?>
</td>
</tr>
<tr>
<td valign="top" class="key">
<?php echo JText::_( 'Item Name' ); ?>
</td>
<td>
<strong>
<a href="javascript:go2('go2menuitem','<?php echo $menu->menutype; ?>','<?php echo $menu->id; ?>');" title="<?php echo JText::_( 'Go to Menu Item' ); ?>">
<?php echo $menu->name; ?></a>
</strong>
</td>
</tr>
<tr>
<td valign="top" class="key">
<?php echo JText::_( 'State' ); ?>
</td>
<td>
<?php
switch ( $menu->published ) {
case -2:
echo '<font color="red">'. JText::_( 'Trashed' ) .'</font>';
break;
case 0:
echo JText::_( 'UnPublished' );
break;
case 1:
default:
echo '<font color="green">'. JText::_( 'Published' ) .'</font>';
break;
}
?>
</td>
</tr>
</table>
</fieldset>
<?php
$i++;
}
?>
<input type="hidden" name="menu" value="" />
<input type="hidden" name="menuid" value="" />
<?php
}
/**
* Legacy function, use {@link JHTMLGrid::checkedOut()} instead
*
* @deprecated As of version 1.5
*/
function checkedOut( &$row, $overlib=1 )
{
jimport('joomla.html.html.grid');
return JHTML::_('grid.checkedOut',$row, $overlib);
}
/**
* Legacy function, use {@link JHTML::_('behavior.tooltip')} instead
*
* @deprecated As of version 1.5
*/
function loadOverlib()
{
JHTML::_('behavior.tooltip');
}
/**
* Legacy function, use {@link JHTML::_('behavior.calendar')} instead
*
* @deprecated As of version 1.5
*/
function loadCalendar()
{
JHTML::_('behavior.calendar');
}
/**
* Legacy function, use {@link JHTML::_('grid.access')} instead
*
* @deprecated As of version 1.5
*/
function AccessProcessing( &$row, $i, $archived=NULL )
{
return JHTML::_('grid.access', $row, $i, $archived);
}
/**
* Legacy function, use {@link JHTML::_('grid.checkedout')} instead
*
* @deprecated As of version 1.5
*/
function CheckedOutProcessing( &$row, $i )
{
return JHTML::_('grid.checkedout', $row, $i);
}
/**
* Legacy function, use {@link JHTML::_('grid.published')} instead
*
* @deprecated As of version 1.5
*/
function PublishedProcessing( &$row, $i, $imgY='tick.png', $imgX='publish_x.png' )
{
return JHTML::_('grid.published',$row, $i, $imgY, $imgX);
}
/**
* Legacy function, use {@link JHTML::_('grid.state')} instead
*
* @deprecated As of version 1.5
*/
function selectState( $filter_state=NULL, $published='Published', $unpublished='Unpublished', $archived=NULL )
{
return JHTML::_('grid.state', $filter_state, $published, $unpublished, $archived);
}
/**
* Legacy function, use {@link JHTML::_('grid.order')} instead
*
* @deprecated As of version 1.5
*/
function saveorderButton( $rows, $image='filesave.png' )
{
echo JHTML::_('grid.order', $rows, $image);
}
/**
* Legacy function, use {@link echo JHTML::_('grid.sort')} instead
*
* @deprecated As of version 1.5
*/
function tableOrdering( $text, $ordering, &$lists, $task=NULL )
{
// TODO: We may have to invert order_Dir here because this control now does the flip for you
echo JHTML::_('grid.sort', $text, $ordering, @$lists['order_Dir'], @$lists['order'], $task);
}
}
|