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


PHP Documento::model方法代碼示例

本文整理匯總了PHP中Documento::model方法的典型用法代碼示例。如果您正苦於以下問題:PHP Documento::model方法的具體用法?PHP Documento::model怎麽用?PHP Documento::model使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Documento的用法示例。


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

示例1: actionDelete

 public function actionDelete()
 {
     $id = Yii::app()->request->getParam('id');
     $folder = Yii::app()->getBasePath() . "/../upload/";
     $doc = Documento::model()->findByPk($id);
     $nombre = $doc->nombre;
     $doc->delete();
     unlink($folder . $nombre);
     header("Content-type: application/json");
     echo CJSON::encode(array('status' => 'success'));
     exit;
 }
開發者ID:jencina,項目名稱:checklist,代碼行數:12,代碼來源:DocumentoController.php

示例2: actionAutocompletesearch

 public function actionAutocompletesearch()
 {
     $q = "%" . $_GET['term'] . "%";
     $result = array();
     if (!empty($q)) {
         $criteria = new CDbCriteria();
         $criteria->select = array('id', "CONCAT_WS(' ',nombre) as nombre");
         $criteria->condition = "lower(CONCAT_WS(' ',nombre)) like lower(:nombre) ";
         $criteria->params = array(':nombre' => $q);
         $criteria->limit = '10';
         $cursor = Documento::model()->findAll($criteria);
         foreach ($cursor as $valor) {
             $result[] = array('label' => $valor->nombre, 'value' => $valor->nombre, 'id' => $valor->id);
         }
     }
     echo json_encode($result);
     Yii::app()->end();
 }
開發者ID:rzamarripa,項目名稱:masoftproyectos,代碼行數:18,代碼來源:DocumentoController.php

示例3: actionView

 /**
  * Displays a particular model.
  * @param integer $id the ID of the model to be displayed
  */
 public function actionView($id)
 {
     $doctos = Documento::model()->findAll("proyecto_did = " . $id);
     $this->render('view', array('model' => $this->loadModel($id), 'doctos' => $doctos));
 }
開發者ID:rzamarripa,項目名稱:masoftproyectos,代碼行數:9,代碼來源:ProyectoController.php


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