mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
36 lines
437 B
PHP
Executable File
36 lines
437 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers\Importacion;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Importar extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Importar';
|
|
}
|
|
|
|
|
|
// public function delete_files()
|
|
// {
|
|
//
|
|
// }
|
|
//
|
|
// public function pedidos_maquetacion()
|
|
// {
|
|
//
|
|
// }
|
|
//
|
|
// public function pedidos_prestashop()
|
|
// {
|
|
//
|
|
// }
|
|
|
|
}
|
|
|