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


PHP Grupo::defaultPermitions方法代碼示例

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


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

示例1:

<?php

/* @var PermissaoAtividadeForm $atividade */
?>
<h4>Permissões da Página de Atividades</h4>
<div class="input">
	<?php 
echo $form->labelEx($atividade, 'informacoes');
?>
	<?php 
echo $form->dropDownList($atividade, 'informacoes', Grupo::defaultPermitions());
?>
	<?php 
echo $form->error($atividade, 'informacoes');
?>
</div>
<div class="input">
	<?php 
echo $form->labelEx($atividade, 'deletar');
?>
	<?php 
echo $form->dropDownList($atividade, 'deletar', Grupo::binaryPermitions());
?>
	<?php 
echo $form->error($atividade, 'deletar');
?>
</div>
開發者ID:elikristina,項目名稱:portalcegov,代碼行數:27,代碼來源:_atividades.php

示例2:

?>
</td>
	  </tr>
	  
	  <tr>
	  <td>Acesso aos Documentos</td>
	  <td><?php 
echo $form->dropDownList($model->permissao, 'documentos', Grupo::defaultPermitions());
?>
</td>
	  </tr>
	  
	  <tr>
	  <td>Acesso as Atividades</td>
	  <td><?php 
echo $form->dropDownList($model->permissao, 'atividades', Grupo::defaultPermitions());
?>
</td>
	  </tr>
	  
	  <tr>
	  <td>Acesso ao Gerencial</td>
	  <td><?php 
echo $form->dropDownList($model->permissao, 'gerencial', Grupo::binaryPermitions());
?>
</td>
	  </tr>

	  <tr>
	  <td>Deleção</td>
	  <td><?php 
開發者ID:elikristina,項目名稱:portalcegov,代碼行數:31,代碼來源:_form_permissao.php

示例3: array

		<tr><td colspan="3"><?php 
echo CHtml::link("Editar Projeto", array('/projeto/update', 'id' => $model->cod_projeto), array('class' => 'btn btn-primary btn-small'));
?>
 </td></tr>

	</table>
	
	<h4>Permissões Individuais</h4>
	<div class="well">
	<?php 
echo CHtml::link("Adicionar Permissão", array('projeto/permissoes', 'id' => $model->cod_projeto), array('class' => 'btn btn-primary btn-small'));
?>

	<dl class="dl-horizontal">
		<?php 
$defaultPermitions = Grupo::defaultPermitions();
$binaryPermitions = Grupo::binaryPermitions();
?>
		<?php 
foreach ($permissoes as $p) {
    ?>

		<dt><b><?php 
    echo $p->pessoa->nome;
    ?>
</b></dt>
			<?php 
    $perm = json_decode($p->permissao);
    ?>
			
			<dd> <b>Informações:</b> <?php 
開發者ID:elikristina,項目名稱:portalcegov,代碼行數:31,代碼來源:_view_gerencial.php

示例4:

echo $form->labelEx($pessoa, 'informacoes_avancadas');
?>
	<?php 
echo $form->dropDownList($pessoa, 'informacoes_avancadas', Grupo::defaultPermitions());
?>
	<?php 
echo $form->error($pessoa, 'informacoes_avancadas');
?>
</div>

<div class="input">
	<?php 
echo $form->labelEx($pessoa, 'atividades');
?>
	<?php 
echo $form->dropDownList($pessoa, 'atividades', Grupo::defaultPermitions());
?>
	<?php 
echo $form->error($pessoa, 'atividades');
?>
</div>

<div class="input">
	<?php 
echo $form->labelEx($pessoa, 'financeiro');
?>
	<?php 
echo $form->dropDownList($pessoa, 'financeiro', Grupo::binaryPermitions());
?>
	<?php 
echo $form->error($pessoa, 'financeiro');
開發者ID:elikristina,項目名稱:portalcegov,代碼行數:31,代碼來源:_pessoas.php

示例5:

	
		<?php 
echo $form->labelEx($projeto, 'financeiro');
?>
		<?php 
echo $form->dropDownList($projeto, 'financeiro', Grupo::defaultPermitions());
?>
		<?php 
echo $form->error($projeto, 'financeiro');
?>
	
		<?php 
echo $form->labelEx($projeto, 'documentos');
?>
		<?php 
echo $form->dropDownList($projeto, 'documentos', Grupo::defaultPermitions());
?>
		<?php 
echo $form->error($projeto, 'documentos');
?>
	
		<?php 
echo $form->labelEx($projeto, 'gerencial');
?>
		<?php 
echo $form->dropDownList($projeto, 'gerencial', Grupo::binaryPermitions());
?>
		<?php 
echo $form->error($projeto, 'gerencial');
?>
		
開發者ID:elikristina,項目名稱:portalcegov,代碼行數:29,代碼來源:_projetos.php


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