• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Modelo类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



在下文中一共展示了Modelo类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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:

 /**
  * TriplePlay_Modelo::__Construct()
  * 
  * Genera la varible con la conexion necesaria
  * @return void
  */
 function __Construct()
 {
     parent::__Construct();
     $this->conexion = NeuralConexionDB::DoctrineDBAL(APPBD);
 }
开发者ID:alejofix,项目名称:Mejoramiento,代码行数:11,代码来源:TriplePlay_Modelo.php


示例11: loadModel

 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id)
 {
     $model = Modelo::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
开发者ID:rodespsan,项目名称:LMEC,代码行数:13,代码来源:ModeloController.php


示例12: EliminarProductos

function EliminarProductos($id)
{
    $mdl = new Modelo();
    $res = $mdl->exec("DELETE FROM inventario WHERE _id ='{$id['_id']}'");
    $mdl->close();
}
开发者ID:anjamago,项目名称:almacen,代码行数:6,代码来源:Create.php


示例13: __Construct

 function __Construct()
 {
     parent::__Construct();
     AyudasSessiones::ValidarSessionModelo();
 }
开发者ID:alejofix,项目名称:Gape,代码行数:5,代码来源:Consultas_Modelo.php


示例14: Producto

 function Producto()
 {
     parent::Modelo();
 }
开发者ID:AndresOsorio115,项目名称:EntregaFinal,代码行数:4,代码来源:Producto.php


示例15: __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


示例16: __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


示例17: __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


示例18: __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


示例19: __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


示例20: __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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Models类代码示例发布时间:2022-05-23
下一篇:
PHP ModeleBoxes类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap