mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
26 lines
472 B
PHP
26 lines
472 B
PHP
<?php
|
|
|
|
namespace App\Controllers\ServiciosDigitalizacion;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Digitalizacion extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$uri = service('uri');
|
|
$data['page_name'] = "Digitalizacion";
|
|
$data['url'] = base_url() . $uri->getSegment(1) . '/' . $uri->getSegment(2);
|
|
echo view(getenv('theme.path').'main/demo_view', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|