This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<fieldset> | |
<legend><?=ucfirst($controller_name)?></legend> | |
<div> | |
<label>Filter:</label> | |
<input class="js-filter" data-to=".list li" type="text" /> | |
</div> | |
<ul> | |
<?php foreach($modules as $module) : | |
$filename = str_replace('.zip', '', basename($module) ); ?> | |
<li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
app/views/admin/permisos.index.phtml | |
--> | |
<form method="post"> | |
<div class="actions"> | |
<button class="btn-floating darken-1 orange tooltipped waves-effect waves-light" data-delay="500" data-position="left" data-tooltip="guardar permisos" name="accion" type="submit" value="guardar"><i class="material-icons">save</i></button> | |
</div> | |
<div class="mt5 ml5 mr50"> | |
<div class="card row"> | |
<h5 class="col s12 teal-text darken-1 pv10">reglas</h5> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
*/ | |
#body h5.a | |
{ | |
background: linear-gradient(to right, #fff59d, white); | |
margin-left: -17px !important; | |
padding: 5px; | |
position: relative; | |
} | |
#body h5.a span.bent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*/ | |
class GenerateController extends AdminController | |
{ | |
public function index() | |
{ | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*/ | |
class AgendaConsole | |
{ | |
/** | |
*/ | |
public function enviar_correo($params) | |
{ | |
exec('wget https://iiswebusr:[email protected]/agenda/enviar_correo/' . $params['id']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* dock - top */ | |
.dock { text-align: left; } | |
.dock-container { position: absolute; } | |
a.dock-item | |
{ | |
position: absolute; | |
text-align: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<title>Materialize</title> | |
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | |
<link href="/css/materialize.min.css" media="print,screen" rel="stylesheet"> | |
<link href="/css/prism.css" media="print,screen" rel="stylesheet"> | |
<link href="/css/admin.css" media="screen" rel="stylesheet"> | |
<link href="/css/hacks.css" media="screen" rel="stylesheet"> | |
<link href="/css/pantallita.css" media="screen" rel="stylesheet"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*/ | |
class Myar | |
{ | |
/** | |
* STEP 1 | |
*/ | |
public function connect() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once CORE_PATH . 'kumbia/controller.php'; | |
class AppController extends Controller | |
{ | |
final protected function initialize() | |
{ | |
$this->limit_params = false; | |
$this->url = empty($_SERVER['PATH_INFO']) ? '/' : $_SERVER['PATH_INFO']; | |
View::select('', 'default'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
[...] | |
/** | |
* Maneja las excepciones no capturadas | |
* | |
* @param Exception $e | |
* */ | |
public static function handleException($e) |