本文整理汇总了PHP中Location::getListLocation方法的典型用法代码示例。如果您正苦于以下问题:PHP Location::getListLocation方法的具体用法?PHP Location::getListLocation怎么用?PHP Location::getListLocation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Location
的用法示例。
在下文中一共展示了Location::getListLocation方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
// Decidir en funcion a la accion
$title_1 = $v_label["NEW_TITLE"];
// INSERT
$action = 'INSERT';
if (isset($_GET['EDIT'])) {
$action = 'EDIT';
$title_1 = $v_label["EDIT_TITLE"];
$elementAction = $_GET['EDIT'];
} elseif (isset($_GET['PREVIEW'])) {
$action = 'PREVIEW';
$title_1 = $v_label["PREVIEW_TITLE"];
$elementAction = $_GET['PREVIEW'];
}
if ($action != 'INSERT') {
$element = new Location($registry[$nameDataBase]);
$list = $element->getListLocation($elementAction);
$data = $list[0];
}
// simplificar acceso a etiquetas de formulario
$v_label_gral_form = $property["pages"]["general_form"];
?>
<div class="grid_10">
<div class="box round first">
<h2><?php
echo $title_1;
?>
</h2>
示例2: Transaction
$transaction = new Transaction($registry[$nameDataBase]);
Location::setDataOperationBusiness($registry[$nameDataBase]);
$idTransaction = $transaction->insertTransaction(array(Location::$business, Location::$update, Location::$descriptionBusiness));
$data = array($_GET['DELETE']);
$statusTransactionDB = $catalog->deleteLocation($data, $idTransaction);
if ($statusTransactionDB > 0) {
Forms::setMessage('SUCCESS', $v_label["SHORT_MESSAGE_OK_DELETE"], $v_label["DETAIL_MESSAGE_OK_DELETE"]);
} else {
Forms::setMessage('ERROR', $v_label["SHORT_MESSAGE_NOOK_DELETE"], $v_label["DETAIL_MESSAGE_NOOK_DELETE"]);
}
break;
default:
break;
}
// Obtener lista
$list = $catalog->getListLocation();
?>
<div class="grid_10">
<div class="box round first">
<h2><?php
echo $v_label["TITLE"];
?>
</h2>
<?php
include "view/wallejlla/templates/tpl_messages_1.php";
?>
<h5><?php
echo $v_label["TITLE_LIST"];
示例3: TypeDirection
$numero = 1;
if (isset($_GET['NUMBER'])) {
$numero = $_GET['NUMBER'];
}
$id = 1;
if (isset($_GET['ID'])) {
$id = $_GET['ID'];
}
$action = 'INSERT';
if (isset($_GET['ACTION']) && $_GET['ACTION'] == 'EDIT') {
$action = 'EDIT';
}
$direction = new TypeDirection($db);
$catalogo1 = $direction->getListTypeDirection();
$city = new Location($db);
$catalogo2 = $city->getListLocation();
$pk_id_person_direction = 0;
$pk_id_direction = 0;
$pk_id_type_direction = 0;
$fk_id_location = 0;
$direction = '';
if ($action == 'EDIT') {
$pk_id_person_direction = $_GET['pk_id_person_direction'];
$pk_id_direction = $_GET['pk_id_direction'];
$pk_id_type_direction = $_GET['pk_id_type_direction'];
$fk_id_location = $_GET['fk_id_location'];
$direction = $_GET['direction'];
}
?>
<div id="directions_din_<?php
示例4: array
Forms::printInput('SELECT', 'CITY_BIRTH', $city_birth, '', array(), $itemsSelect);
?>
</td>
</tr>
<tr>
<td class="col1">
<?php
Forms::printLabel('Localidad de Nacimiento');
?>
</td>
<td class="col2">
<?php
$object = new Location($db);
$catalogo = $object->getListLocation();
$itemsSelect = array();
foreach ($catalogo as $item) {
$itemsSelect[$item['id']] = $item['name'];
}
$location_birth = '';
if ($action == 'EDIT') {
$location_birth = $data['locality_birth'];
}
Forms::printInput('SELECT', 'LOCALITY_BIRTH', $location_birth, '', array(), $itemsSelect);
?>
</td>
</tr>
<tr>