root/plugins/contents/views/channels/admin_edit.ctp

225237
30
	<fieldset>
30
	<fieldset>
31
 		<legend><?php __('Edit Channel');?></legend>
31
 		<legend><?php __('Edit Channel');?></legend>
32
	<?php
32
	<?php
33
		echo $form->input('id', array('between' => '<br />'));
33
		echo $form->input('id');
34
		echo $form->input('title', array('between' => '<br />', 'class' => 'title'));
34
		echo $form->input('title', array('class' => 'title'));
35
		echo $form->input('description', array('between' => '<br />', 'class' => 'text'));
35
		echo $form->input('description', array('class' => 'text'));
36
		echo $form->input('type', array('between' => '<br />'));
36
		echo $form->input('type');
37
		echo $form->input('active');
37
		echo $form->input('active');
38
		echo $form->input('private');
38
		echo $form->input('private');
39
		echo $form->input('featured');
39
		echo $form->input('featured');
40
		echo $form->input('theme', array('between' => '<br />'));
40
		echo $form->input('theme');
41
		echo $form->input('slug', array('between' => '<br />', 'class' => 'text', 'readonly' => true));
41
		echo $form->input('slug', array('class' => 'text', 'readonly' => true));
42
		echo $form->input('post_counter', array('between' => '<br />'));
42
		echo $form->input('post_counter');
43
		echo $upload->image('icon', array('between' => '<br />', 'type' => 'file'));
43
		echo $upload->image('icon', array('type' => 'file'));
44
		echo $upload->image('image', array('between' => '<br />', 'type' => 'file'));
44
		echo $upload->image('image', array('type' => 'file'));
45
		echo $form->input('pubDate', array('between' => '<br />', 'format' => 'DMY'));
45
		echo $form->input('pubDate', array('format' => 'DMY'));
46
	if (!empty($returnTo)) {
46
	if (!empty($returnTo)) {
47
		echo $form->input('App.returnTo', array('type' => 'hidden', 'value' => $returnTo));
47
		echo $form->input('App.returnTo', array('type' => 'hidden', 'value' => $returnTo));
48
	}
48
	}