本文整理汇总了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();
?>