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