コード例 #1
0
<?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>
コード例 #2
0
?>
</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 
コード例 #3
0
		<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 
コード例 #4
0
ファイル: _pessoas.php プロジェクト: elikristina/portalcegov
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');
コード例 #5
0
ファイル: _projetos.php プロジェクト: elikristina/portalcegov
	
		<?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');
?>