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


PHP AuthItem::getRoles方法代碼示例

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


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

示例1: actionGrantAccess

 /**
  * 
  * @param int $id the id of the user to be given access
  */
 public function actionGrantAccess($id)
 {
     $user = User::model()->findByPk($id);
     if (isset($_POST['submit'])) {
         $clear = AuthAssignment::clearAll($id);
         $auth = Yii::app()->authManager;
         //Initialing The Authentication Manager
         if (isset($_POST['name'])) {
             foreach ($_POST['name'] as $value) {
                 if ($value != 1) {
                     //skipping select all
                     $auth->assign($value, $id);
                     $this->logAudit("Action " . $value . " was assigned to user " . $user->username);
                 }
             }
         }
         $success = "<div class='success'><p class='success'>Roles were added successfully...</p></div>";
         Yii::app()->user->setFlash('success', $success);
     } else {
         $success = "<div class='failure'><p class='failure'>Please,select at least one role for the user...</p></div>";
         Yii::app()->user->setFlash('success', $success);
     }
     $this->render('_roles_batch', array('dataProvider' => AuthItem::getRoles(), 'model' => $user));
 }
開發者ID:robertgunze,項目名稱:eams,代碼行數:28,代碼來源:AuthItemController.php

示例2:

//echo $form->labelEx($model,'password');
?>
		<?php 
//echo $form->passwordField($model,'password',array('size'=>60,'maxlength'=>128));
?>
		<?php 
//echo $form->error($model,'password');
?>
	</div>

	<div class="row">
		<?php 
echo $form->labelEx($model, 'itemname');
?>
		<?php 
echo $form->dropDownList($model, 'itemname', AuthItem::getRoles());
?>
		<?php 
echo $form->error($model, 'itemname');
?>
	</div>

	<div class="row buttons">
		<?php 
echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save');
?>
	</div>

<?php 
$this->endWidget();
?>
開發者ID:rainyjune,項目名稱:YSMusic,代碼行數:31,代碼來源:assign.php


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