本文整理汇总了PHP中agente::url方法的典型用法代码示例。如果您正苦于以下问题:PHP agente::url方法的具体用法?PHP agente::url怎么用?PHP agente::url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类agente
的用法示例。
在下文中一共展示了agente::url方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: private_core
protected function private_core()
{
$this->agente = new agente();
if (isset($_POST['sdnicif'])) {
$age0 = new agente();
$age0->codagente = $age0->get_new_codigo();
$age0->nombre = $_POST['snombre'];
$age0->apellidos = $_POST['sapellidos'];
$age0->dnicif = $_POST['sdnicif'];
$age0->telefono = $_POST['stelefono'];
$age0->email = $_POST['semail'];
if ($age0->save()) {
$this->new_message("Empleado " . $age0->codagente . " guardado correctamente.");
header('location: ' . $age0->url());
} else {
$this->new_error_msg("¡Imposible guardar el empleado!");
}
} else {
if (isset($_GET['delete'])) {
$age0 = $this->agente->get($_GET['delete']);
if ($age0) {
if (FS_DEMO) {
$this->new_error_msg('En el modo <b>demo</b> no se pueden eliminar empleados. Otro usuario podría estar usándolo.');
} else {
if ($age0->delete()) {
$this->new_message("Empleado " . $age0->codagente . " eliminado correctamente.");
} else {
$this->new_error_msg("¡Imposible eliminar el empleado!");
}
}
} else {
$this->new_error_msg("¡Empleado no encontrado!");
}
}
}
$this->offset = 0;
if (isset($_GET['offset'])) {
$this->offset = intval($_GET['offset']);
}
$this->ciudad = '';
if (isset($_REQUEST['ciudad'])) {
$this->ciudad = $_REQUEST['ciudad'];
}
$this->provincia = '';
if (isset($_REQUEST['provincia'])) {
$this->provincia = $_REQUEST['provincia'];
}
$this->orden = 'nombre ASC';
if (isset($_REQUEST['orden'])) {
$this->orden = $_REQUEST['orden'];
}
$this->buscar();
}
示例2: process
protected function process()
{
$this->agente = new agente();
$this->buttons[] = new fs_button_img('b_nuevo_agente', 'Nuevo');
if (isset($_POST['sdnicif'])) {
$age0 = new agente();
$age0->codagente = $age0->get_new_codigo();
$age0->nombre = $_POST['snombre'];
$age0->apellidos = $_POST['sapellidos'];
$age0->dnicif = $_POST['sdnicif'];
$age0->telefono = $_POST['stelefono'];
$age0->email = $_POST['semail'];
if ($age0->save()) {
$this->new_message("Empleado " . $age0->codagente . " guardado correctamente.");
header('location: ' . $age0->url());
} else {
$this->new_error_msg("¡Imposible guardar el empleado!");
}
} else {
if (isset($_GET['delete'])) {
$age0 = $this->agente->get($_GET['delete']);
if ($age0) {
if (FS_DEMO) {
$this->new_error_msg('En el modo <b>demo</b> no se pueden eliminar empleados. Otro usuario podría estar usándolo.');
} else {
if ($age0->delete()) {
$this->new_message("Empleado " . $age0->codagente . " eliminado correctamente.");
} else {
$this->new_error_msg("¡Imposible eliminar el empleado!");
}
}
} else {
$this->new_error_msg("¡Empleado no encontrado!");
}
}
}
}