!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/hide_blockquote/   drwxr-xr-x
Free 1.48 GB of 7.22 GB (20.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * Quotation block hidding
 *
 * Plugin that adds a possibility to hide long blocks of cited text in messages.
 *
 * Configuration:
 * // Minimum number of citation lines. Longer citation blocks will be hidden.
 * // 0 - no limit (no hidding).
 * $rcmail_config['hide_blockquote_limit'] = 0;
 *
 * @version @package_version@
 * @license GNU GPLv3+
 * @author Aleksander Machniak <alec@alec.pl>
 */
class hide_blockquote extends rcube_plugin
{
    public 
$task 'mail|settings';

    function 
init()
    {
        
$rcmail rcmail::get_instance();

        if (
$rcmail->task == 'mail'
            
&& ($rcmail->action == 'preview' || $rcmail->action == 'show')
            && (
$limit $rcmail->config->get('hide_blockquote_limit'))
        ) {
            
// include styles
            
$this->include_stylesheet($this->local_skin_path() . "/style.css");

            
// Script and localization
            
$this->include_script('hide_blockquote.js');
            
$this->add_texts('localization'true);

            
// set env variable for client
            
$rcmail->output->set_env('blockquote_limit'$limit);
        }
        else if (
$rcmail->task == 'settings') {
            
$dont_override $rcmail->config->get('dont_override', array());
            if (!
in_array('hide_blockquote_limit'$dont_override)) {
                
$this->add_hook('preferences_list', array($this'prefs_table'));
                
$this->add_hook('preferences_save', array($this'save_prefs'));
            }
        }
    }

    function 
prefs_table($args)
    {
        if (
$args['section'] != 'mailview') {
            return 
$args;
        }

        
$this->add_texts('localization');

        
$rcmail   rcmail::get_instance();
        
$limit    = (int) $rcmail->config->get('hide_blockquote_limit');
        
$field_id 'hide_blockquote_limit';
        
$input    = new html_inputfield(array('name' => '_'.$field_id'id' => $field_id'size' => 5));

        
$args['blocks']['main']['options']['hide_blockquote_limit'] = array(
            
'title' => $this->gettext('quotelimit'),
            
'content' => $input->show($limit $limit '')
        );

        return 
$args;
    }

    function 
save_prefs($args)
    {
        if (
$args['section'] == 'mailview') {
            
$args['prefs']['hide_blockquote_limit'] = (int) get_input_value('_hide_blockquote_limit'RCUBE_INPUT_POST);
        }

        return 
$args;
    }

}

:: 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.0166 ]--