本文整理匯總了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));
}
示例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();
?>