Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15423 | Rev 16841 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15423 Rev 16822
Línea 5... Línea 5...
5
$roleName = $currentUser->getUserTypeId();
5
$roleName = $currentUser->getUserTypeId();
Línea 6... Línea 6...
6
 
6
 
Línea 7... Línea 7...
7
 
7
 
8
$routeSave       = $this->url('settings/my-private-network/intro');
8
$routeSave       = $this->url('settings/my-private-network/intro');
Línea 9... Línea 9...
9
 
9
 
Línea 10... Línea 10...
10
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
11
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
11
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
12
 
12
 
Línea 13... Línea 13...
13
$this->inlineScript()->appendFile($this->basePath('plugins/ckeditor/ckeditor.js'));
13
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
14
 
14
 
15
 
15
 
Línea 129... Línea 129...
129
JS;
129
JS;
130
$this->inlineScript()->captureEnd();
130
$this->inlineScript()->captureEnd();
131
?>
131
?>
Línea 132... Línea 132...
132
 
132
 
133
<!-- Content Header (Page header) -->
-
 
134
<section class="content-header">
133
<!-- Content Header (Page header) -->
135
	<div class="container-fluid">
-
 
136
    	<div class="row mb-2">
-
 
137
        	<div class="col-sm-12">
-
 
138
            	<h1>LABEL_MY_PRIVATE_NETWORK_INTRO</h1>
-
 
139
			</div>
-
 
140
		</div>
134
<div class="container">
141
		<div class="row mb-2">
-
 
142
        	<div class="col-sm-12">
135
	<div class="card">
143
    		<?php 
136
		<?php 
144
           	    $form = $this->form;
137
               	    $form = $this->form;
145
                $form->setAttributes([
138
                    $form->setAttributes([
146
                    'method'  => 'post',
139
                        'method'  => 'post',
147
                	'action'  => $routeSave,
140
                    	'action'  => $routeSave,
148
                    'name'    => 'form',
141
                        'name'    => 'form',
149
                    'id'      => 'form',
142
                        'id'      => 'form',
150
                ]);
143
                    ]);
151
        
144
            
152
                $form->prepare();
145
                    $form->prepare();
153
                echo $this->form()->openTag($form);
146
                    echo $this->form()->openTag($form);
-
 
147
        ?>	
-
 
148
		<div class="card-body">
154
            ?>					
149
      		<h6 class="card-title">LABEL_MY_PRIVATE_NETWORK_INTRO</h6>
-
 
150
    		<div class="row">
155
    		<div class="form-group">
151
            	<div class="col-12 mb-3 mt-3">
156
          		<?php 
152
              		<?php 
157
                $element = $form->get('intro');
153
                    $element = $form->get('intro');
158
                $element->setAttributes(['id' => 'intro', 'class' => 'form-control', 'rows' => '2','class' => 'form-control']);
154
                    $element->setAttributes(['id' => 'intro', 'class' => 'form-control', 'rows' => '2','class' => 'form-control']);
159
                // $element->setOptions(['label' => 'LABEL_INTRO']);
155
                    // $element->setOptions(['label' => 'LABEL_INTRO']);
160
                // echo $this->formLabel($element);
156
                    // echo $this->formLabel($element);
161
                echo $this->formTextArea($element);
157
                    echo $this->formTextArea($element);
162
                ?>
-
 
163
       		</div>
-
 
164
    		<div class="form-group">
-
 
165
            	<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
158
                    ?>
166
      		</div>
-
 
-
 
159
     		</div>
167
       		<?php echo $this->form()->closeTag($form); ?>
160
 
168
			</div>
161
			</div>
-
 
162
		</div>	
-
 
163
		<div class="card-footer text-right">
-
 
164
     		<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
165
    	</div>
169
		</div>
166
    	<?php echo $this->form()->closeTag($form); ?>
170
	</div><!-- /.container-fluid -->
167
	</div><!-- /.container-fluid -->