Subversion Repositories SmartDukaan

Rev

Rev 14965 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14955 manas 1
<div class="notificationCampaigns form">
2
<?php echo $this->Form->create('NotificationCampaign'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit Notification Campaign'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('name');
8
		echo $this->Form->input('title');
9
		echo $this->Form->input('message');
10
		echo $this->Form->input('type');
11
		echo $this->Form->input('url');
12
		echo $this->Form->input('expiresAt');
13
	?>
14
	</fieldset>
15
<?php echo $this->Form->end(__('Submit')); ?>
16
</div>
17
<div class="actions">
18
	<h3><?php echo __('Actions'); ?></h3>
19
	<ul>
20
 
21
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('NotificationCampaign.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('NotificationCampaign.id'))); ?></li>
22
		<li><?php echo $this->Html->link(__('List Notification Campaigns'), array('action' => 'index')); ?></li>
23
		<li><?php echo $this->Html->link(__('List Pushnotifications'), array('controller' => 'pushnotifications', 'action' => 'index')); ?> </li>
24
		<li><?php echo $this->Html->link(__('New Pushnotification'), array('controller' => 'pushnotifications', 'action' => 'add')); ?> </li>
25
	</ul>
26
</div>