36 lines
621 B
PHP
36 lines
621 B
PHP
<?PHP
|
||
|
||
require_once('api/Simpla.php');
|
||
|
||
class BrandsAdmin extends Simpla
|
||
{
|
||
function fetch()
|
||
{
|
||
|
||
// Обработка действий
|
||
if($this->request->method('post'))
|
||
{
|
||
|
||
// Действия с выбранными
|
||
$ids = $this->request->post('check');
|
||
|
||
if(is_array($ids))
|
||
switch($this->request->post('action'))
|
||
{
|
||
case 'delete':
|
||
{
|
||
foreach($ids as $id)
|
||
$this->brands->delete_brand($id);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
$brands = $this->brands->get_brands();
|
||
|
||
$this->design->assign('brands', $brands);
|
||
return $this->body = $this->design->fetch('brands.tpl');
|
||
}
|
||
}
|
||
|