Subversion Repositories SmartDukaan

Rev

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 __('Add Notification Campaign'); ?></legend>
5
	<?php
6
		echo $this->Form->input('name');
7
		echo $this->Form->input('title');
8
		echo $this->Form->input('message');
9
		echo $this->Form->input('type');
10
		echo $this->Form->input('url');
11
	?>
12
	</fieldset>
13
<?php echo $this->Form->end(__('Submit')); ?>
14
</div>
15
<div class="actions">
16
	<h3><?php echo __('Actions'); ?></h3>
17
	<ul>
18
 
19
		<li><?php echo $this->Html->link(__('List Notification Campaigns'), array('action' => 'index')); ?></li>
20
		<li><?php echo $this->Html->link(__('List Pushnotifications'), array('controller' => 'pushnotifications', 'action' => 'index')); ?> </li>
21
		<li><?php echo $this->Html->link(__('New Pushnotification'), array('controller' => 'pushnotifications', 'action' => 'add')); ?> </li>
22
	</ul>
23
</div>