本文整理汇总了PHP中Estado::getListadoEstado方法的典型用法代码示例。如果您正苦于以下问题:PHP Estado::getListadoEstado方法的具体用法?PHP Estado::getListadoEstado怎么用?PHP Estado::getListadoEstado使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Estado
的用法示例。
在下文中一共展示了Estado::getListadoEstado方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
/**
* Método principal
*/
public function index()
{
$pais = new Pais();
$estado = new Estado();
$municipio = new Municipio();
if (Input::hasPost('empresa')) {
if (DwSecurity::isValidKey(Input::post('empresa_id_key'), 'form_key')) {
if (Empresa::setEmpresa('save', Input::post('empresa'))) {
DwMessage::valid('Los datos se han actualizado correctamente');
} else {
DwMessage::get('error_form');
}
}
}
$empresa = new Empresa();
if (!$empresa->getInformacionEmpresa()) {
DwMessage::get('id_no_found');
return DwRedirect::toRoute('module: dashboard', 'controller: index');
}
if (!APP_OFFICE) {
$sucursal = new Sucursal();
$this->sucursal = $sucursal->getInformacionSucursal(1);
$this->ciudades = Load::model('params/ciudad')->getCiudadesToJson();
}
$this->empresa = $empresa;
$this->pais = $pais->getListadoPais();
$this->estado = $estado->getListadoEstado();
$this->municipio = $municipio->getListadoMunicipio();
$this->page_title = 'Información de la empresa';
}
示例2: agregar
/**
* Método para agregar
*/
public function agregar()
{
$pais = new Pais();
$estado = new Estado();
$municipio = new Municipio();
//$empresa = Session::get('empresa', 'config');
$empresa = 1;
if (Input::hasPost('sucursal')) {
if (Sucursal::setSucursal('create', Input::post('sucursal'), array('empresa_id' => $empresa))) {
DwMessage::valid('La sucursal se ha registrado correctamente!');
return DwRedirect::toAction('listar');
}
}
$this->pais = $pais->getListadoPais();
$this->estado = $estado->getListadoEstado();
$this->municipio = $municipio->getListadoMunicipio();
$this->page_title = 'Agregar sucursal';
}