Advertisement
fernandezekiel

Untitled

Mar 1st, 2013
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.16 KB | None | 0 0
  1. <?php
  2. /* @var $this OperationController|TaskController|RoleController */
  3. /* @var $dataProvider AuthItemDataProvider */
  4.  
  5. $this->breadcrumbs = array(
  6.     $this->capitalize($this->getTypeText(true)),
  7. );
  8. ?>
  9. <?php
  10.  $title_this = $this->capitalize($this->getTypeText(true));
  11.  //echo $title_this;
  12. ?>
  13.  
  14. <!------------------------------------------------------------------------------------------------>
  15. <!-- left part of content -->
  16. <div class="content_left">
  17.     <div class="bootsrap-headerz">
  18.         <i class="<?php
  19.             if($title_this == "Roles"){
  20.                 echo "icon-star iconzz";
  21.             }else if($title_this == "Tasks"){
  22.                 echo "icon-list-alt iconzz";
  23.             }else{
  24.                 echo "icon-repeat iconzz";
  25.             }
  26.             ?>"></i>
  27.         <h3 class="title_h3"><?php echo $title_this ?></h3>
  28.        
  29.         <div id="admin_menu" style="position:relative;display: inline-block;float:right">
  30.             <?php
  31.                     $this->widget('bootstrap.widgets.TbButtonGroup', array(
  32.                         'size'=>'small',
  33.                         'type' => 'info', // '', 'primary', 'info', 'success', 'warning', 'danger' or 'inverse'            
  34.                         'buttons' => array(
  35.                             array('label' => 'Admin', 'url' => '#'), // this makes it split :)
  36.                             array('items' => array(
  37.                                     array('label'=>'User Access/Rights Management', 'itemOptions'=>array('class'=>'nav-header')),
  38.                                     array('label'=>'Assignments','icon'=>'icon-book', 'url'=>array('/auth/assignment')),
  39.                                     array('label'=>'Roles','icon'=>'icon-star', 'url'=>array('/auth/role/index')),
  40.                                     array('label'=>'Tasks','icon'=>'icon-list-alt', 'url'=>array('/auth/task/index')),
  41.                                     array('label'=>'Operations','icon'=>'icon-repeat', 'url'=>array('/auth/operation/index')),
  42.                                     array('label'=>'Branch Management','icon'=>'icon-tags', 'url'=>array('../branch')),
  43.                                     '---',
  44.                                    // array('label'=>'Profile Field Management', 'itemOptions'=>array('class'=>'nav-header')),
  45.                                     //array('label'=>UserModule::t('Manage Profile Field'),'icon'=>'icon-wrench', 'url'=>array('profileField/admin')),
  46.                                    // '---',
  47.                                   /*  array('label'=>'User Management', 'itemOptions'=>array('class'=>'nav-header')),
  48.                                     array('label' => 'Manage Users','icon'=>'icon-wrench', 'url' => array('/user/admin')),*/
  49.                                    
  50.                             ),
  51.                             'htmlOptions'=>array('style'=>'height:18px;'),
  52.                             ),
  53.                         ),             
  54.                        
  55.                     ));
  56.             ?>             
  57.         </div>     
  58.        
  59.     </div>
  60.    
  61.     <div class="crm_content">
  62.         <?php $this->widget('bootstrap.widgets.TbGridView', array(
  63.             'type' => 'striped hover',
  64.             'dataProvider' => $dataProvider,
  65.                     //'filter'=>$dataProvider,
  66.             'emptyText' => Yii::t('AuthModule.main', 'No {type} found.', array('{type}'=>$this->getTypeText(true))),
  67.             'template'=>"{items}\n{pager}",
  68.             'columns' => array(
  69.                 array(
  70.                     'name' => 'name',
  71.                     'type'=>'raw',
  72.                     'header' => Yii::t('AuthModule.main', 'System name'),
  73.                     'htmlOptions' => array('class'=>'item-name-column'),
  74.                     'value' => "CHtml::link(\$data->name, array('view', 'name'=>\$data->name))",
  75.                 ),
  76.                 array(
  77.                     'name' => 'description',
  78.                     'header' => Yii::t('AuthModule.main', 'Description'),
  79.                     'htmlOptions' => array('class'=>'item-description-column'),
  80.                 ),
  81.                 array(
  82.                     'class'=>'bootstrap.widgets.TbButtonColumn',
  83.                     'viewButtonLabel' => Yii::t('AuthModule.main', 'View'),
  84.                     'viewButtonUrl' => "Yii::app()->controller->createUrl('view', array('name'=>\$data->name))",
  85.                     'updateButtonLabel' => Yii::t('AuthModule.main', 'Edit'),
  86.                     'updateButtonUrl' => "Yii::app()->controller->createUrl('update', array('name'=>\$data->name))",
  87.                     'deleteButtonLabel' => Yii::t('AuthModule.main', 'Delete'),
  88.                     'deleteButtonUrl' => "Yii::app()->controller->createUrl('delete', array('name'=>\$data->name))",
  89.                     'deleteConfirmation' => Yii::t('AuthModule.main', 'Are you sure you want to delete this item?'),
  90.                 ),
  91.             ),
  92.         )); ?>
  93.        
  94.         <?php $this->widget('bootstrap.widgets.TbButton', array(
  95.             'type' => 'primary',
  96.             'htmlOptions'=>array('style'=>'float:right;margin-right:10px;'),
  97.             'label' => Yii::t('AuthModule.main', 'Add {type}', array('{type}' => $this->getTypeText())),
  98.             'url' => array('create'),
  99.         )); ?>
  100.     </div>
  101. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement