!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/usr/share/roundcube/plugins/jqueryui/   drwxr-xr-x
Free 1.47 GB of 7.22 GB (20.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     jqueryui.php (2.86 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * jQuery UI
 *
 * Provide the jQuery UI library with according themes.
 *
 * @version 1.9.1
 * @author Cor Bosman <roundcube@wa.ter.net>
 * @author Thomas Bruederli <roundcube@gmail.com>
 */
class jqueryui extends rcube_plugin
{
    public 
$noajax true;

    public function 
init()
    {
        
$version '1.9.1';

        
$rcmail rcmail::get_instance();
        
$this->load_config();

        
// include UI scripts
        
$this->include_script("js/jquery-ui.min.js");

        
// include UI stylesheet
        
$skin $rcmail->config->get('skin');
        
$ui_map $rcmail->config->get('jquery_ui_skin_map', array());
        
$ui_theme $ui_map[$skin] ? $ui_map[$skin] : $skin;

        if (
file_exists($this->home "/themes/$ui_theme/jquery-ui-$version.custom.css")) {
            
$this->include_stylesheet("themes/$ui_theme/jquery-ui-$version.custom.css");
        }
        else {
            
$this->include_stylesheet("themes/larry/jquery-ui-$version.custom.css");
        }

        if (
$ui_theme == 'larry') {
            
// patch dialog position function in order to fully fit the close button into the window
            
$rcmail->output->add_script("jQuery.extend(jQuery.ui.dialog.prototype.options.position, {
                using: function(pos) {
                    var me = jQuery(this),
                        offset = me.css(pos).offset(),
                        topOffset = offset.top - 12;
                    if (topOffset < 0)
                        me.css('top', pos.top - topOffset);
                    if (offset.left + me.outerWidth() + 12 > jQuery(window).width())
                        me.css('left', pos.left - 12);
                }
            });"
'foot');
        }

        
// jquery UI localization
        
$jquery_ui_i18n $rcmail->config->get('jquery_ui_i18n', array('datepicker'));
        if (
count($jquery_ui_i18n) > 0) {
            
$lang_l str_replace('_''-'substr($_SESSION['language'], 05));
            
$lang_s substr($_SESSION['language'], 02);
            foreach (
$jquery_ui_i18n as $package) {
                if (
file_exists($this->home "/js/i18n/jquery.ui.$package-$lang_l.js")) {
                    
$this->include_script("js/i18n/jquery.ui.$package-$lang_l.js");
                }
                else
                if (
file_exists($this->home "/js/i18n/jquery.ui.$package-$lang_s.js")) {
                    
$this->include_script("js/i18n/jquery.ui.$package-$lang_s.js");
                }
            }
        }

        
// Date format for datepicker
        
$date_format $rcmail->config->get('date_format''Y-m-d');
        
$date_format strtr($date_format, array(
                
'y' => 'y',
                
'Y' => 'yy',
                
'm' => 'mm',
                
'n' => 'm',
                
'd' => 'dd',
                
'j' => 'd',
        ));
        
$rcmail->output->set_env('date_format'$date_format);
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0092 ]--