summaryrefslogtreecommitdiff
path: root/protected/views/cmsPage/admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views/cmsPage/admin.php')
-rw-r--r--protected/views/cmsPage/admin.php58
1 files changed, 0 insertions, 58 deletions
diff --git a/protected/views/cmsPage/admin.php b/protected/views/cmsPage/admin.php
deleted file mode 100644
index 88ede5c..0000000
--- a/protected/views/cmsPage/admin.php
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-$this->breadcrumbs=array(
- 'Cms Pages'=>array('index'),
- 'Manage',
-);
-
-$this->menu=array(
- array('label'=>'List CmsPage', 'url'=>array('index')),
- array('label'=>'Create CmsPage', 'url'=>array('create')),
-);
-
-Yii::app()->clientScript->registerScript('search', "
-$('.search-button').click(function(){
- $('.search-form').toggle();
- return false;
-});
-$('.search-form form').submit(function(){
- $.fn.yiiGridView.update('cms-page-grid', {
- data: $(this).serialize()
- });
- return false;
-});
-");
-?>
-
-<h1>Manage Cms Pages</h1>
-
-<p>
-You may optionally enter a comparison operator (<b>&lt;</b>, <b>&lt;=</b>, <b>&gt;</b>, <b>&gt;=</b>, <b>&lt;&gt;</b>
-or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
-</p>
-
-<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button')); ?>
-<div class="search-form" style="display:none">
-<?php $this->renderPartial('_search',array(
- 'model'=>$model,
-)); ?>
-</div><!-- search-form -->
-
-<?php $this->widget('zii.widgets.grid.CGridView', array(
- 'id'=>'cms-page-grid',
- 'dataProvider'=>$model->search(),
- 'filter'=>$model,
- 'columns'=>array(
- 'id',
- 'content',
- 'title',
- 'create_time',
- 'update_time',
- 'status',
- /*
- 'slug',
- */
- array(
- 'class'=>'CButtonColumn',
- ),
- ),
-)); ?>