當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Modelo類代碼示例

本文整理匯總了PHP中Modelo的典型用法代碼示例。如果您正苦於以下問題:PHP Modelo類的具體用法?PHP Modelo怎麽用?PHP Modelo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Modelo類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: login

 public function login()
 {
     $db = new Modelo();
     $db->_tabela = $this->tableName;
     $where = $this->userColumn . "='" . $this->user . "' and " . $this->passColumn . "='" . $this->pass . "'";
     $sql = $db->ler($where);
     if (isset($sql[0]['id_usuario'])) {
         if ($sql[0]['login'] == $this->user) {
             if ($sql[0]['senha'] == $this->pass) {
                 $this->sessionHelper->createSession("userAuth", TRUE)->createSession("userData", $sql[0]);
             } else {
                 $this->loginController = 'Usuario';
                 $this->loginAction = 'dados_in';
             }
         } else {
             $this->loginController = 'Usuario';
             $this->loginAction = 'dados_in';
         }
     } else {
         $this->loginController = 'Usuario';
         $this->loginAction = 'dados_in';
     }
     $this->redirectorHelper->goToControladorAcao($this->loginController, $this->loginAction);
     return $this;
 }
開發者ID:guilhermis-idalino,項目名稱:cuidandodoseudimdim,代碼行數:25,代碼來源:authHelper.php

示例2: autoComplete

function autoComplete($n)
{
    $mdl = new Modelo();
    $rs = $mdl->query("SELECT * FROM inventario WHERE Nombre LIKE '{$n}'");
    $i = 0;
    while ($row = $rs->fetchArray()) {
        $res[$i] = array('_id' => $row['_id'], 'Serie' => $row['Serie'], 'Nombre' => $row['Nombre'], 'Cantidad' => $row['Cantidad'], 'Costo' => $row['Costo'], 'Precio' => $row['Precio']);
        $i++;
    }
    print_r(json_encode($res));
}
開發者ID:anjamago,項目名稱:almacen,代碼行數:11,代碼來源:cargar.php

示例3: __construct

 public function __construct()
 {
     if (!$_SESSION['valido']) {
         header('Location: ' . URL_BASE);
     }
     $this->modelo = Modelo::cargar('Roles');
 }
開發者ID:erikandrey,項目名稱:sismed,代碼行數:7,代碼來源:rolesControlador.php

示例4: __construct

 public function __construct($cod_usu = NULL)
 {
     Modelo::__construct();
     if (func_num_args() == 1) {
         $this->cod_usu = $cod_usu;
     }
 }
開發者ID:natanverdes,項目名稱:ritmodecopas.es,代碼行數:7,代碼來源:musico.php

示例5: indexAction

 public function indexAction()
 {
     $genero = $this->_request->getParam('genero', 'chicos');
     $modelos = $genero == 'chicos' ? Modelo::findModelosChicosActive()->getData() : Modelo::findModelosChicasActive()->getData();
     $paginator = new Zend_Paginator(new Zend_Paginator_Adapter_Array($modelos));
     $paginator->setItemCountPerPage(20)->setPageRange(5)->setCurrentPageNumber($this->_request->getParam('page', 1));
     $this->view->modelos = $paginator;
 }
開發者ID:Neozeratul,項目名稱:Intermodels,代碼行數:8,代碼來源:IndexController.php

示例6: getModeloByIdMarca_IdTipoEquipo

 public static function getModeloByIdMarca_IdTipoEquipo($idMarca, $idTipoEquipo)
 {
     $result = BaseDatos::getDbh()->prepare("SELECT * FROM Modelo where idMarca = :idMarca AND idTipoEquipo = :idTipoEquipo AND estado = 1");
     $result->bindParam(':idMarca', $idMarca);
     $result->bindParam(':idTipoEquipo', $idTipoEquipo);
     $result->execute();
     while ($rs = $result->fetch()) {
         $modelo = new Modelo();
         $modelo->setIdModelo($rs['idModelo']);
         $modelo->setIdMarca($rs['idMarca']);
         $modelo->setIdTipoEquipo($rs['idTipoEquipo']);
         $modelo->setDescripcion($rs['descripcion']);
         $modelo->setIndicacion($rs['indicacion']);
         $modelo->setIndicacion($rs['estado']);
         $modelos[] = $modelo;
     }
     return isset($modelos) ? $modelos : false;
 }
開發者ID:Rabp9,項目名稱:sirall2,代碼行數:18,代碼來源:ModeloDAO.php

示例7: actionUpdate

 /**
  * Updates a particular model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id the ID of the model to be updated
  */
 public function actionUpdate($id)
 {
     $model = $this->loadModel($id);
     $oModelos = Modelo::model()->ordenarTitulo()->naoExcluido()->findAll();
     $oMarcas = Marca::model()->ordenarTitulo()->naoExcluido()->findAll();
     $oTiposProduto = TipoProduto::model()->ordenarTitulo()->naoExcluido()->findAll();
     if (isset($_POST['Produto'])) {
         $model->attributes = $_POST['Produto'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('update', array('model' => $model, 'oModelos' => $oModelos, 'oMarcas' => $oMarcas, 'oTiposProduto' => $oTiposProduto));
 }
開發者ID:bgstation,項目名稱:erp,代碼行數:19,代碼來源:ProdutoController.php

示例8: error_reporting

<?php

error_reporting(E_ALL);
ini_set('display_errors', '1');
header('Content-Type: application/json');
require 'modelo.php';
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    $id_persona = $_GET['id'];
    $contra = $_GET['contra'];
    $retorno = Modelo::update_contrabyID($id_persona, $contra);
    if ($retorno) {
        $persona["result"] = "true";
        $persona["datos"] = $retorno;
        echo json_encode($persona);
    } else {
        echo json_encode(array('result' => 'false', 'mensaje' => 'No se obtuvo el registro'));
    }
}
開發者ID:brandon1525,項目名稱:basededatos_proyecto,代碼行數:18,代碼來源:guardar_contra.php

示例9: error_reporting

<?php

error_reporting(E_ALL);
ini_set('display_errors', '1');
header('Content-Type: application/json');
require 'modelo.php';
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    $id = $_GET['id'];
    $id_configuracion = $_GET['id_configuracion'];
    $retorno = Modelo::update_configbyID((int) $id, (int) $id_configuracion);
    if ($retorno) {
        $persona["result"] = "true";
        $persona["exito"] = $retorno;
        echo json_encode($persona);
    } else {
        echo json_encode(array('result' => 'false', 'mensaje' => 'No se obtuvo el registro'));
    }
}
開發者ID:brandon1525,項目名稱:basededatos_proyecto,代碼行數:18,代碼來源:guardar_config.php

示例10: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'casos';
     $this->index = 'telefono';
     $this->singularName = 'comuna';
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:7,代碼來源:columnas_base.class.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'encuestas_casos';
     $this->index = 'id_caso';
     $this->columns = array('id_caso', 'id_encuesta');
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:7,代碼來源:encuestas_casos.class.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'acciones';
     $this->singularName = 'accion';
     $this->index = 'id_accion';
     $this->columns = array('accion');
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:8,代碼來源:acciones.class.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'encuestas';
     $this->singularName = 'encuesta';
     $this->index = 'id_encuesta';
     $this->columns = array('encuesta', 'limesurvey_encuesta');
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:8,代碼來源:encuestas.class.php

示例14: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'estados';
     $this->singularName = 'estado';
     $this->index = 'id_estado';
     $this->columns = array('estado', 'descripcion', 'visibilidad');
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:8,代碼來源:estados.class.php

示例15: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table = 'usuarios';
     $this->singularName = 'usrname';
     $this->index = 'id_usuario';
     $this->columns = array('usrname', 'password', 'ip_estacion', 'num_cdr');
     $this->columnsXupdate = array('usrname', 'ip_estacion', 'num_cdr');
 }
開發者ID:alejandra-aravena,項目名稱:DesUC-Polls-Managment,代碼行數:9,代碼來源:usuarios.class.php


注:本文中的Modelo類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。