JEMBOT MAWOT Bypass Shell
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Grid\Definition\Factory;
use PrestaShop\PrestaShop\Core\Grid\Action\Bulk\BulkActionCollection;
use PrestaShop\PrestaShop\Core\Grid\Action\Row\RowActionCollection;
use PrestaShop\PrestaShop\Core\Grid\Action\Row\Type\LinkRowAction;
use PrestaShop\PrestaShop\Core\Grid\Column\ColumnCollection;
use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\ActionColumn;
use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\BulkActionColumn;
use PrestaShop\PrestaShop\Core\Grid\Column\Type\Common\DataColumn;
/**
* Class BackupDefinitionFactory is responsible for defining 'Configure > Advanced Parameters > Database > Backup' grid.
*/
final class BackupDefinitionFactory extends AbstractGridDefinitionFactory
{
use BulkDeleteActionTrait;
use DeleteActionTrait;
/**
* {@inheritdoc}
*/
protected function getId()
{
return 'backup';
}
/**
* {@inheritdoc}
*/
protected function getName()
{
return $this->trans('DB Backup', [], 'Admin.Navigation.Menu');
}
/**
* {@inheritdoc}
*/
protected function getColumns()
{
return (new ColumnCollection())
->add(
(new BulkActionColumn('backup_bulk_file_names'))
->setOptions([
'bulk_field' => 'file_name',
])
)
->add(
(new DataColumn('date'))
->setName($this->trans('Date', [], 'Admin.Global'))
->setOptions([
'field' => 'date_formatted',
'sortable' => false,
])
)
->add(
(new DataColumn('age'))
->setName($this->trans('Age', [], 'Admin.Advparameters.Feature'))
->setOptions([
'field' => 'age_formatted',
'sortable' => false,
])
)
->add(
(new DataColumn('file_name'))
->setName($this->trans('Filename', [], 'Admin.Global'))
->setOptions([
'field' => 'file_name',
'sortable' => false,
])
)
->add(
(new DataColumn('file_size'))
->setName($this->trans('File size', [], 'Admin.Advparameters.Feature'))
->setOptions([
'field' => 'file_size_formatted',
'sortable' => false,
])
)
->add(
(new ActionColumn('actions'))
->setOptions([
'actions' => (new RowActionCollection())
->add(
(new LinkRowAction('view'))
->setIcon('cloud_download')
->setOptions([
'route' => 'admin_backups_download_view',
'route_param_name' => 'downloadFileName',
'route_param_field' => 'file_name',
'clickable_row' => true,
])
)
->add(
$this->buildDeleteAction(
'admin_backups_delete',
'deleteFileName',
'file_name'
)
),
])
);
}
/**
* {@inheritdoc}
*/
protected function getBulkActions()
{
return (new BulkActionCollection())
->add(
$this->buildBulkDeleteAction('admin_backups_bulk_delete')
);
}
}
xxxxx1.0, XXX xxxx