- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
94 lines
2.9 KiB
PHP
94 lines
2.9 KiB
PHP
<?php
|
|
|
|
class UsuarioController extends Controller {
|
|
|
|
/**
|
|
* @var CActiveRecord the currently loaded data model instance.
|
|
*/
|
|
private $_model;
|
|
|
|
/**
|
|
* @return array action filters
|
|
*/
|
|
public function filters() {
|
|
return CMap::mergeArray(parent::filters(), array(
|
|
'accessControl', // perform access control for CRUD operations
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Specifies the access control rules.
|
|
* This method is used by the 'accessControl' filter.
|
|
* @return array access control rules
|
|
*/
|
|
public function accessRules() {
|
|
return array(
|
|
array('allow', // allow all users to perform 'index' and 'view' actions
|
|
'actions' => array('index', 'view'),
|
|
'users' => array('*'),
|
|
),
|
|
array('deny', // deny all users
|
|
'users' => array('*'),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Displays a particular model.
|
|
*/
|
|
public function actionView() {
|
|
$model = $this->loadModel();
|
|
$this->render('view', array(
|
|
'model' => $model,
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Lists all models.
|
|
*/
|
|
public function actionIndex() {
|
|
$dataProvider = new CActiveDataProvider('Usuario', array(
|
|
'criteria' => array(
|
|
'condition' => 'estado>' . Usuario::ESTADO_BLOQUEADO,
|
|
),
|
|
'pagination' => array(
|
|
'pageSize' => Yii::app()->controller->module->user_page_size,
|
|
),
|
|
));
|
|
|
|
$this->render('index', array(
|
|
'dataProvider' => $dataProvider,
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
public function loadModel() {
|
|
if ($this->_model === null) {
|
|
if (isset($_GET['id']))
|
|
$this->_model = User::model()->findbyPk($_GET['id']);
|
|
if ($this->_model === null)
|
|
throw new CHttpException(404, 'The requested page does not exist.');
|
|
}
|
|
return $this->_model;
|
|
}
|
|
|
|
/**
|
|
* 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 primary key value. Defaults to null, meaning using the 'id' GET variable
|
|
*/
|
|
public function loadUser($id = null) {
|
|
if ($this->_model === null) {
|
|
if ($id !== null || isset($_GET['id']))
|
|
$this->_model = User::model()->findbyPk($id !== null ? $id : $_GET['id']);
|
|
if ($this->_model === null)
|
|
throw new CHttpException(404, 'The requested page does not exist.');
|
|
}
|
|
return $this->_model;
|
|
}
|
|
|
|
}
|