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


PHP Accounts::hasAttribute方法代码示例

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


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

示例1: actionCreate

 public function actionCreate()
 {
     switch ($_GET['model']) {
         // Get an instance of the respective model
         case 'Contacts':
             $model = new Contacts();
             $this->modelClass = "Contacts";
             $temp = $model->attributes;
             break;
         case 'Actions':
             $model = new Actions();
             $this->modelClass = "Actions";
             $temp = $model->attributes;
             break;
         case 'Accounts':
             $model = new Accounts();
             $this->modelClass = "Accounts";
             $temp = $model->attributes;
             break;
         default:
             $this->_sendResponse(501, sprintf('Mode <b>create</b> is not implemented for model <b>%s</b>', $_GET['model']));
             exit;
     }
     // Try to assign POST values to attributes
     foreach ($_POST as $var => $value) {
         // Does the model have this attribute? If not raise an error
         if ($model->hasAttribute($var)) {
             $model->{$var} = $value;
         }
     }
     switch ($_GET['model']) {
         // Get an instance of the respective model
         case 'Contacts':
             Yii::import("application.modules.contacts.controllers.DefaultController");
             $controller = new DefaultController('DefaultController');
             if ($controller->create($model, $temp, '1')) {
                 $this->_sendResponse(200, sprintf('Model <b>%s</b> was created with name <b>%s</b>', $_GET['model'], $model->firstName . " " . $model->lastName));
             } else {
                 // Errors occurred
                 $msg = "<h1>Error</h1>";
                 $msg .= sprintf("Couldn't create model <b>%s</b>", $_GET['model']);
                 $msg .= "<ul>";
                 foreach ($model->errors as $attribute => $attr_errors) {
                     $msg .= "<li>Attribute: {$attribute}</li>";
                     $msg .= "<ul>";
                     foreach ($attr_errors as $attr_error) {
                         $msg .= "<li>{$attr_error}</li>";
                     }
                     $msg .= "</ul>";
                 }
                 $msg .= "</ul>";
                 $this->_sendResponse(500, $msg);
             }
             break;
         case 'Accounts':
             Yii::import("application.modules.accounts.controllers.DefaultController");
             $controller = new DefaultController('DefaultController');
             if ($controller->create($model, $temp, '1')) {
                 $this->_sendResponse(200, sprintf('Model <b>%s</b> was created with name <b>%s</b>', $_GET['model'], $model->name));
             } else {
                 // Errors occurred
                 $msg = "<h1>Error</h1>";
                 $msg .= sprintf("Couldn't create model <b>%s</b>", $_GET['model']);
                 $msg .= "<ul>";
                 foreach ($model->errors as $attribute => $attr_errors) {
                     $msg .= "<li>Attribute: {$attribute}</li>";
                     $msg .= "<ul>";
                     foreach ($attr_errors as $attr_error) {
                         $msg .= "<li>{$attr_error}</li>";
                     }
                     $msg .= "</ul>";
                 }
                 $msg .= "</ul>";
                 $this->_sendResponse(500, $msg);
             }
             break;
         case 'Actions':
             Yii::import("application.modules.actions.controllers.DefaultController");
             $controller = new DefaultController('DefaultController');
             if ($controller->create($model, $temp, '1')) {
                 $this->_sendResponse(200, sprintf('Model <b>%s</b> was created with description <b>%s</b>', $_GET['model'], $model->actionDescription));
             } else {
                 // Errors occurred
                 $msg = "<h1>Error</h1>";
                 $msg .= sprintf("Couldn't create model <b>%s</b>", $_GET['model']);
                 $msg .= "<ul>";
                 foreach ($model->errors as $attribute => $attr_errors) {
                     $msg .= "<li>Attribute: {$attribute}</li>";
                     $msg .= "<ul>";
                     foreach ($attr_errors as $attr_error) {
                         $msg .= "<li>{$attr_error}</li>";
                     }
                     $msg .= "</ul>";
                 }
                 $msg .= "</ul>";
                 $this->_sendResponse(500, $msg);
             }
             break;
         default:
             $this->_sendResponse(501, sprintf('Mode <b>create</b> is not implemented for model <b>%s</b>', $_GET['model']));
//.........这里部分代码省略.........
开发者ID:netconstructor,项目名称:X2Engine,代码行数:101,代码来源:ApiController.php


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