当前位置: 首页>>代码示例>>PHP>>正文


PHP Country::getListCountry方法代码示例

本文整理汇总了PHP中Country::getListCountry方法的典型用法代码示例。如果您正苦于以下问题:PHP Country::getListCountry方法的具体用法?PHP Country::getListCountry怎么用?PHP Country::getListCountry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Country的用法示例。


在下文中一共展示了Country::getListCountry方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Transaction

        $transaction = new Transaction($registry[$nameDataBase]);
        Country::setDataOperationBusiness($registry[$nameDataBase]);
        $idTransaction = $transaction->insertTransaction(array(Country::$business, Country::$update, Country::$descriptionBusiness));
        $data = array($_GET['DELETE']);
        $statusTransactionDB = $catalog->deleteCountry($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->getListCountry();
?>
<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"];
开发者ID:vicholuis,项目名称:proyectopruebalms,代码行数:31,代码来源:country_admin.php

示例2: array

if ($action == 'EDIT' || $action == 'PREVIEW') {
    $city_birth = $data['CITY_BIRTH'];
}
Forms::printInput('SELECT', 'CITY_BIRTH', $city_birth, 'select_requerido', array(), $itemsSelect);
?>
                              <?php 
if ($action != 'PREVIEW') {
    ?>
 <span class="rojo">*</span><?php 
}
?>
</td>
                          <td>PAIS NACIMIENTO:</td>
                              <td> <?php 
$object = new Country($db);
$catalogo = $object->getListCountry();
$itemsSelect = array();
foreach ($catalogo as $item) {
    $itemsSelect[$item['id']] = $item['name'];
}
$itemsSelect['0'] = 'SELECCIONE UNA OPCION';
$country_birth = '';
if ($action == 'EDIT' || $action == 'PREVIEW') {
    $country_birth = $data['COUNTRY_BIRTH'];
}
Forms::printInput('SELECT', 'COUNTRY_BIRTH', $country_birth, 'select_requerido', array(), $itemsSelect);
?>
                              <?php 
if ($action != 'PREVIEW') {
    ?>
 <span class="rojo">*</span><?php 
开发者ID:vicholuis,项目名称:proyectopruebalms,代码行数:31,代码来源:formulario.php

示例3: 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 Country($registry[$nameDataBase]);
    $list = $element->getListCountry($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>
开发者ID:vicholuis,项目名称:proyectopruebalms,代码行数:31,代码来源:country.php

示例4: TypeIdentifyDoc

    $numero = $_GET['NUMBER'];
}
$id = 1;
if (isset($_GET['ID'])) {
    $id = $_GET['ID'];
}
$action = 'INSERT';
if (isset($_GET['ACTION']) && $_GET['ACTION'] == 'EDIT') {
    $action = 'EDIT';
}
$typeDoc = new TypeIdentifyDoc($db);
$catalogo1 = $typeDoc->getListTypeIdentifyDoc();
$city = new City($db);
$catalogo2 = $city->getListCity();
$country = new Country($db);
$catalogo3 = $country->getListCountry();
$pk_id_person_identify_doc = 0;
$identify_document = '';
$city_expedition = 0;
$fk_id_type_identify_doc = 1;
$fk_id_country = 0;
if ($action == 'INSERT') {
    $fk_id_type_identify_doc = $_GET['fk_id_type_identify_doc'];
}
if ($action == 'EDIT') {
    $pk_id_person_identify_doc = $_GET['pk_id_person_identify_doc'];
    $identify_document = $_GET['identify_document'];
    $city_expedition = $_GET['city_expedition'];
    $fk_id_type_identify_doc = $_GET['fk_id_type_identify_doc'];
    $fk_id_country = $_GET['fk_id_country'];
}
开发者ID:vicholuis,项目名称:proyectopruebalms,代码行数:31,代码来源:person_id_docs.php


注:本文中的Country::getListCountry方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。