ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:23.6 GB of 70.42 GB (33.51%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ yalagina/ libraries/ joomla/ html/ html/ - drwxr-xr-x

Directory:
Viewing file:     jgrid.php (16.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  HTML
 *
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

/**
 * Utility class for creating HTML Grids
 *
 * @package     Joomla.Platform
 * @subpackage  HTML
 * @since       11.1
 */
abstract class JHtmlJGrid
{
    
/**
     * Returns an action on a grid
     *
     * @param   integer       $i               The row index
     * @param   string        $task            The task to fire
     * @param   string|array  $prefix          An optional task prefix or an array of options
     * @param   string        $text            An optional text to display
     * @param   string        $active_title    An optional active tooltip to display if $enable is true
     * @param   string        $inactive_title  An optional inactive tooltip to display if $enable is true
     * @param   boolean       $tip             An optional setting for tooltip
     * @param   string        $active_class    An optional active HTML class
     * @param   string        $inactive_class  An optional inactive HTML class
     * @param   boolean       $enabled         An optional setting for access control on the action.
     * @param   boolean       $translate       An optional setting for translation.
     * @param   string        $checkbox           An optional prefix for checkboxes.
     *
     * @return string         The Html code
     *
     * @since   11.1
     */
    
public static function action($i$task$prefix ''$text ''$active_title ''$inactive_title ''$tip false$active_class '',
        
$inactive_class ''$enabled true$translate true$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$text array_key_exists('text'$options) ? $options['text'] : $text;
            
$active_title array_key_exists('active_title'$options) ? $options['active_title'] : $active_title;
            
$inactive_title array_key_exists('inactive_title'$options) ? $options['inactive_title'] : $inactive_title;
            
$tip array_key_exists('tip'$options) ? $options['tip'] : $tip;
            
$active_class array_key_exists('active_class'$options) ? $options['active_class'] : $active_class;
            
$inactive_class array_key_exists('inactive_class'$options) ? $options['inactive_class'] : $inactive_class;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$translate array_key_exists('translate'$options) ? $options['translate'] : $translate;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }
        if (
$tip)
        {
            
JHtml::_('behavior.tooltip');
        }
        if (
$enabled)
        {
            
$html[] = '<a class="jgrid' . ($tip ' hasTip' '') . '"';
            
$html[] = ' href="javascript:void(0);" onclick="return listItemTask(\'' $checkbox $i '\',\'' $prefix $task '\')"';
            
$html[] = ' title="' addslashes(htmlspecialchars($translate JText::_($active_title) : $active_titleENT_COMPAT'UTF-8')) . '">';
            
$html[] = '<span class="state ' $active_class '">';
            
$html[] = $text ? ('<span class="text">' . ($translate JText::_($text):$text) . '</span>') : '';
            
$html[] = '</span>';
            
$html[] = '</a>';
        }
        else
        {
            
$html[] = '<a class="jgrid' . ($tip ' hasTip' '') . '"';
            
$html[] = ' title="' addslashes(htmlspecialchars($translate JText::_($inactive_title) : $inactive_titleENT_COMPAT'UTF-8')) . '">';
            
$html[] = '<span class="state ' $inactive_class '">';
            
$html[] = $text ? ('<span class="text">' . ($translate JText::_($text) : $text) . '</span>') :'';
            
$html[] = '</span>';
            
$html[] = '</a>';
        }
        return 
implode($html);
    }

    
/**
     * Returns a state on a grid
     *
     * @param   array         $states     array of value/state. Each state is an array of the form
     *                                    (task, text, title,html active class, HTML inactive class)
     *                                    or ('task'=>task, 'text'=>text, 'active_title'=>active title,
     *                                    'inactive_title'=>inactive title, 'tip'=>boolean, 'active_class'=>html active class,
     *                                    'inactive_class'=>html inactive class)
     * @param   integer       $value      The state value.
     * @param   integer       $i          The row index
     * @param   string|array  $prefix     An optional task prefix or an array of options
     * @param   boolean       $enabled    An optional setting for access control on the action.
     * @param   boolean       $translate  An optional setting for translation.
     * @param   string        $checkbox   An optional prefix for checkboxes.
     *
     * @return  string       The Html code
     *
     * @since   11.1
     */
    
public static function state($states$value$i$prefix ''$enabled true$translate true$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$translate array_key_exists('translate'$options) ? $options['translate'] : $translate;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }
        
$state JArrayHelper::getValue($states, (int) $value$states[0]);
        
$task array_key_exists('task'$state) ? $state['task'] : $state[0];
        
$text array_key_exists('text'$state) ? $state['text'] : (array_key_exists(1$state) ? $state[1] : '');
        
$active_title array_key_exists('active_title'$state) ? $state['active_title'] : (array_key_exists(2$state) ? $state[2] : '');
        
$inactive_title array_key_exists('inactive_title'$state) ? $state['inactive_title'] : (array_key_exists(3$state) ? $state[3] : '');
        
$tip array_key_exists('tip'$state) ? $state['tip'] : (array_key_exists(4$state) ? $state[4] : false);
        
$active_class array_key_exists('active_class'$state) ? $state['active_class'] : (array_key_exists(5$state) ? $state[5] : '');
        
$inactive_class array_key_exists('inactive_class'$state) ? $state['inactive_class'] : (array_key_exists(6$state) ? $state[6] : '');

        return 
self::action(
            
$i$task$prefix$text$active_title$inactive_title$tip,
            
$active_class$inactive_class$enabled$translate$checkbox
        
);
    }

    
/**
     * Returns a published state on a grid
     *
     * @param   integer       $value         The state value.
     * @param   integer       $i             The row index
     * @param   string|array  $prefix        An optional task prefix or an array of options
     * @param   boolean       $enabled       An optional setting for access control on the action.
     * @param   string        $checkbox      An optional prefix for checkboxes.
     * @param   string        $publish_up    An optional start publishing date.
     * @param   string        $publish_down  An optional finish publishing date.
     *
     * @return  string  The Html code
     *
     * @see     JHtmlJGrid::state
     * @since   11.1
     */
    
public static function published($value$i$prefix ''$enabled true$checkbox 'cb'$publish_up null$publish_down null)
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }
        
$states = array(=> array('unpublish''JPUBLISHED''JLIB_HTML_UNPUBLISH_ITEM''JPUBLISHED'false'publish''publish'),
            
=> array('publish''JUNPUBLISHED''JLIB_HTML_PUBLISH_ITEM''JUNPUBLISHED'false'unpublish''unpublish'),
            
=> array('unpublish''JARCHIVED''JLIB_HTML_UNPUBLISH_ITEM''JARCHIVED'false'archive''archive'),
            -
=> array('publish''JTRASHED''JLIB_HTML_PUBLISH_ITEM''JTRASHED'false'trash''trash'));

        
// Special state for dates
        
if ($publish_up || $publish_down)
        {
            
$nullDate JFactory::getDBO()->getNullDate();
            
$nowDate JFactory::getDate()->toUnix();

            
$tz = new DateTimeZone(JFactory::getUser()->getParam('timezone'JFactory::getConfig()->get('offset')));

            
$publish_up = ($publish_up != $nullDate) ? JFactory::getDate($publish_up'UTC')->setTimeZone($tz) : false;
            
$publish_down = ($publish_down != $nullDate) ? JFactory::getDate($publish_down'UTC')->setTimeZone($tz) : false;

            
// Create tip text, only we have publish up or down settings
            
$tips = array();
            if (
$publish_up)
            {
                
$tips[] = JText::sprintf('JLIB_HTML_PUBLISHED_START'$publish_up->format(JDate::$formattrue));
            }
            if (
$publish_down)
            {
                
$tips[] = JText::sprintf('JLIB_HTML_PUBLISHED_FINISHED'$publish_down->format(JDate::$formattrue));
            }
            
$tip = empty($tips) ? false implode('<br/>'$tips);

            
// Add tips and special titles
            
foreach ($states as $key => $state)
            {
                
// Create special titles for published items
                
if ($key == 1)
                {
                    
$states[$key][2] = $states[$key][3] = 'JLIB_HTML_PUBLISHED_ITEM';
                    if (
$publish_up $nullDate && $nowDate $publish_up->toUnix())
                    {
                        
$states[$key][2] = $states[$key][3] = 'JLIB_HTML_PUBLISHED_PENDING_ITEM';
                        
$states[$key][5] = $states[$key][6] = 'pending';
                    }
                    if (
$publish_down $nullDate && $nowDate $publish_down->toUnix())
                    {
                        
$states[$key][2] = $states[$key][3] = 'JLIB_HTML_PUBLISHED_EXPIRED_ITEM';
                        
$states[$key][5] = $states[$key][6] = 'expired';
                    }
                }

                
// Add tips to titles
                
if ($tip)
                {
                    
$states[$key][1] = JText::_($states[$key][1]);
                    
$states[$key][2] = JText::_($states[$key][2]) . '::' $tip;
                    
$states[$key][3] = JText::_($states[$key][3]) . '::' $tip;
                    
$states[$key][4] = true;
                }
            }
            return 
self::state($states$value$i, array('prefix' => $prefix'translate' => !$tip), $enabledtrue$checkbox);
        }

        return 
self::state($states$value$i$prefix$enabledtrue$checkbox);
    }

    
/**
     * Returns a isDefault state on a grid
     *
     * @param   integer       $value     The state value.
     * @param   integer       $i         The row index
     * @param   string|array  $prefix    An optional task prefix or an array of options
     * @param   boolean       $enabled   An optional setting for access control on the action.
     * @param   string        $checkbox  An optional prefix for checkboxes.
     *
     * @return  The Html code
     *
     * @see     JHtmlJGrid::state
     * @since   11.1
     */
    
public static function isdefault($value$i$prefix ''$enabled true$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }

        
$states = array(
            
=> array('unsetDefault''JDEFAULT''JLIB_HTML_UNSETDEFAULT_ITEM''JDEFAULT'false'default''default'),
            
=> array('setDefault''''JLIB_HTML_SETDEFAULT_ITEM'''false'notdefault''notdefault'),
        );

        return 
self::state($states$value$i$prefix$enabledtrue$checkbox);
    }

    
/**
     * Returns an array of standard published state filter options.
     *
     * @param   array  $config  An array of configuration options.
     *                          This array can contain a list of key/value pairs where values are boolean
     *                          and keys can be taken from 'published', 'unpublished', 'archived', 'trash', 'all'.
     *                          These pairs determine which values are displayed.
     *
     * @return  string  The HTML code for the select tag
     *
     * @since   11.1
     */
    
public static function publishedOptions($config = array())
    {
        
// Build the active state filter options.
        
$options = array();
        if (!
array_key_exists('published'$config) || $config['published'])
        {
            
$options[] = JHtml::_('select.option''1''JPUBLISHED');
        }
        if (!
array_key_exists('unpublished'$config) || $config['unpublished'])
        {
            
$options[] = JHtml::_('select.option''0''JUNPUBLISHED');
        }
        if (!
array_key_exists('archived'$config) || $config['archived'])
        {
            
$options[] = JHtml::_('select.option''2''JARCHIVED');
        }
        if (!
array_key_exists('trash'$config) || $config['trash'])
        {
            
$options[] = JHtml::_('select.option''-2''JTRASHED');
        }
        if (!
array_key_exists('all'$config) || $config['all'])
        {
            
$options[] = JHtml::_('select.option''*''JALL');
        }
        return 
$options;
    }

    
/**
     * Returns a checked-out icon
     *
     * @param   integer       $i           The row index.
     * @param   string        $editorName  The name of the editor.
     * @param   string        $time        The time that the object was checked out.
     * @param   string|array  $prefix      An optional task prefix or an array of options
     * @param   boolean       $enabled     True to enable the action.
     * @param   string        $checkbox    An optional prefix for checkboxes.
     *
     * @return  string  The required HTML.
     *
     * @since   11.1
     */
    
public static function checkedout($i$editorName$time$prefix ''$enabled false$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }

        
$text addslashes(htmlspecialchars($editorNameENT_COMPAT'UTF-8'));
        
$date addslashes(htmlspecialchars(JHtml::_('date'$timeJText::_('DATE_FORMAT_LC')), ENT_COMPAT'UTF-8'));
        
$time addslashes(htmlspecialchars(JHtml::_('date'$time'H:i'), ENT_COMPAT'UTF-8'));
        
$active_title JText::_('JLIB_HTML_CHECKIN') . '::' $text '<br />' $date '<br />' $time;
        
$inactive_title JText::_('JLIB_HTML_CHECKED_OUT') . '::' $text '<br />' $date '<br />' $time;

        return 
self::action(
            
$i'checkin'$prefixJText::_('JLIB_HTML_CHECKED_OUT'), $active_title$inactive_titletrue'checkedout',
            
'checkedout'$enabledfalse$checkbox
        
);
    }

    
/**
     * Creates a order-up action icon.
     *
     * @param   integer       $i         The row index.
     * @param   string        $task      An optional task to fire.
     * @param   string|array  $prefix    An optional task prefix or an array of options
     * @param   string        $text      An optional text to display
     * @param   boolean       $enabled   An optional setting for access control on the action.
     * @param   string        $checkbox  An optional prefix for checkboxes.
     *
     * @return  string  The required HTML.
     *
     * @since   11.1
     */
    
public static function orderUp($i$task 'orderup'$prefix ''$text 'JLIB_HTML_MOVE_UP'$enabled true$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$text array_key_exists('text'$options) ? $options['text'] : $text;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }
        return 
self::action($i$task$prefix$text$text$textfalse'uparrow''uparrow_disabled'$enabledtrue$checkbox);
    }

    
/**
     * Creates a order-down action icon.
     *
     * @param   integer       $i         The row index.
     * @param   string        $task      An optional task to fire.
     * @param   string|array  $prefix    An optional task prefix or an array of options
     * @param   string        $text      An optional text to display
     * @param   boolean       $enabled   An optional setting for access control on the action.
     * @param   string        $checkbox  An optional prefix for checkboxes.
     *
     * @return  string  The required HTML.
     *
     * @since   11.1
     */
    
public static function orderDown($i$task 'orderdown'$prefix ''$text 'JLIB_HTML_MOVE_DOWN'$enabled true$checkbox 'cb')
    {
        if (
is_array($prefix))
        {
            
$options $prefix;
            
$text array_key_exists('text'$options) ? $options['text'] : $text;
            
$enabled array_key_exists('enabled'$options) ? $options['enabled'] : $enabled;
            
$checkbox array_key_exists('checkbox'$options) ? $options['checkbox'] : $checkbox;
            
$prefix array_key_exists('prefix'$options) ? $options['prefix'] : '';
        }

        return 
self::action($i$task$prefix$text$text$textfalse'downarrow''downarrow_disabled'$enabledtrue$checkbox);
    }
}
Command:
Quick Commands:
Upload:
[OK] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [OK]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.4851 seconds