Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="playStoreLinks form">
2
<?php echo $this->Form->create('PlayStoreLink'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Edit Play Store Link'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('agent_id');
8
		echo $this->Form->input('retailer_id');
9
		echo $this->Form->input('referralcode');
10
		echo $this->Form->input('url');
11
		echo $this->Form->input('call_id');
12
	?>
13
	</fieldset>
14
<?php echo $this->Form->end(__('Submit')); ?>
15
</div>
16
<div class="actions">
17
	<h3><?php echo __('Actions'); ?></h3>
18
	<ul>
19
 
20
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('PlayStoreLink.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('PlayStoreLink.id'))); ?></li>
21
		<li><?php echo $this->Html->link(__('List Play Store Links'), array('action' => 'index')); ?></li>
22
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
23
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
24
		<li><?php echo $this->Html->link(__('List Calls'), array('controller' => 'calls', 'action' => 'index')); ?> </li>
25
		<li><?php echo $this->Html->link(__('New Call'), array('controller' => 'calls', 'action' => 'add')); ?> </li>
26
	</ul>
27
</div>