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:24.29 GB of 70.42 GB (34.49%)
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/ guitar.1/ libraries/ joomla/ html/ html/ - drwxr-xr-x

Directory:
Viewing file:     batch.php (4.09 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;

/**
 * Extended Utility class for batch processing widgets.
 *
 * @package     Joomla.Platform
 * @subpackage  HTML
 * @since       11.1
 */
abstract class JHtmlBatch
{
    
/**
     * Display a batch widget for the access level selector.
     *
     * @return  string  The necessary HTML for the widget.
     *
     * @since   11.1
     */
    
public static function access()
    {
        
// Create the batch selector to change an access level on a selection list.
        
$lines = array(
            
'<label id="batch-access-lbl" for="batch-access" class="hasTip" title="' JText::_('JLIB_HTML_BATCH_ACCESS_LABEL') . '::'
            
JText::_('JLIB_HTML_BATCH_ACCESS_LABEL_DESC') . '">'JText::_('JLIB_HTML_BATCH_ACCESS_LABEL'), '</label>',
            
JHtml::_(
                
'access.assetgrouplist',
                
'batch[assetgroup_id]''',
                
'class="inputbox"',
                array(
                    
'title' => JText::_('JLIB_HTML_BATCH_NOCHANGE'),
                    
'id' => 'batch-access')
            )
        );

        return 
implode("\n"$lines);
    }

    
/**
     * Displays a batch widget for moving or copying items.
     *
     * @param   string  $extension  The extension that owns the category.
     *
     * @return  string  The necessary HTML for the widget.
     *
     * @since   11.1
     */
    
public static function item($extension)
    {
        
// Create the copy/move options.
        
$options = array(JHtml::_('select.option''c'JText::_('JLIB_HTML_BATCH_COPY')),
            
JHtml::_('select.option''m'JText::_('JLIB_HTML_BATCH_MOVE')));

        
// Create the batch selector to change select the category by which to move or copy.
        
$lines = array('<label id="batch-choose-action-lbl" for="batch-choose-action">'JText::_('JLIB_HTML_BATCH_MENU_LABEL'), '</label>',
            
'<fieldset id="batch-choose-action" class="combo">''<select name="batch[category_id]" class="inputbox" id="batch-category-id">',
            
'<option value="">' JText::_('JSELECT') . '</option>',
            
JHtml::_('select.options'JHtml::_('category.options'$extension)), '</select>',
            
JHtml::_('select.radiolist'$options'batch[move_copy]''''value''text''m'), '</fieldset>');

        return 
implode("\n"$lines);
    }

    
/**
     * Display a batch widget for the language selector.
     *
     * @return  string  The necessary HTML for the widget.
     *
     * @since   11.3
     */
    
public static function language()
    {
        
// Create the batch selector to change the language on a selection list.
        
$lines = array(
            
'<label id="batch-language-lbl" for="batch-language" class="hasTip"'
            
' title="' JText::_('JLIB_HTML_BATCH_LANGUAGE_LABEL') . '::' JText::_('JLIB_HTML_BATCH_LANGUAGE_LABEL_DESC') . '">',
            
JText::_('JLIB_HTML_BATCH_LANGUAGE_LABEL'),
            
'</label>',
            
'<select name="batch[language_id]" class="inputbox" id="batch-language-id">',
            
'<option value="">' JText::_('JLIB_HTML_BATCH_LANGUAGE_NOCHANGE') . '</option>',
            
JHtml::_('select.options'JHtml::_('contentlanguage.existing'truetrue), 'value''text'),
            
'</select>'
        
);

        return 
implode("\n"$lines);
    }

    
/**
     * Display a batch widget for the user selector.
     *
     * @param   boolean  $noUser  Choose to display a "no user" option
     *
     * @return  string  The necessary HTML for the widget.
     *
     * @since   11.4
     */
    
public static function user($noUser true)
    {
        
$optionNo '';
        if (
$noUser)
        {
            
$optionNo '<option value="0">' JText::_('JLIB_HTML_BATCH_USER_NOUSER') . '</option>';
        }

        
// Create the batch selector to select a user on a selection list.
        
$lines = array(
            
'<label id="batch-user-lbl" for="batch-user" class="hasTip"'
            
' title="' JText::_('JLIB_HTML_BATCH_USER_LABEL') . '::' JText::_('JLIB_HTML_BATCH_USER_LABEL_DESC') . '">',
            
JText::_('JLIB_HTML_BATCH_USER_LABEL'),
            
'</label>',
            
'<select name="batch[user_id]" class="inputbox" id="batch-user-id">',
            
'<option value="">' JText::_('JLIB_HTML_BATCH_USER_NOCHANGE') . '</option>',
            
$optionNo,
            
JHtml::_('select.options'JHtml::_('user.userlist'), 'value''text'),
            
'</select>'
        
);

        return 
implode("\n"$lines);
    }
}
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.8378 seconds