summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/bootmenu/index.phtml
blob: 74d0666340cd293a50b9adbb7f989f2b049ba448 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<h1>BootMenu</h1>
<?php if($this->notification != ''){echo $this->notification;} ?>
<?php echo $this->searchform; ?>
<?php echo $this->formButton('createbootmenu', 'Create BootMenu', array(
							'onclick' => 'self.location="/user/bootmenu/createbootmenu/page/'.$this->page.'"',
							'class' => 'addbutton'))?>

<div class='searchvars'>
	<div class='head'>Available searchfilter:</div>
	<div class='code'>bootmenuID</div>
	<div class='code'>title</div>
	<div class='code'>created</div>	
</div>

<div class='listelement'>
	<?php if(count($this->bootmenulist)==0)
		echo "There are no BootMenus to display." ?>
	<?php foreach ($this->bootmenulist as $bootmenu): ?>
	<div class='element'>
  		<div class='number'><?php echo $this->escape($bootmenu->getID()); ?></div>
  		<div class='content'>  			
	  		<div class='actions'>
	  			<a href="<?php echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'bootmenu',
						'action'     => 'editbootmenu',
						'bootmenuID'   =>  $bootmenu->getID(),
						'page'		=> $this->page
					),
					'default',
					true, false) ?>"><img src='/media/img/edit.png' alt='Edit Bootmenu'/></a>
				<a href="<?php echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'bootmenu',
						'action'     => 'deletebootmenu',
						'bootmenuID'   =>  $bootmenu->getID(),
						'page'		=> $this->page
					),
					'default',
					true) ?>"><img src='/media/img/delete.png' alt='Delete Bootmenu'/></a>
				<a href="<?php echo $this->url(
					array(
						'module'	=> 'user',
						'controller' => 'bootmenu',
						'action'     => 'addbootmenuentry',
						'bootmenuID'   =>  $bootmenu->getID(),
						'maxorder' => count($this->bootmenuentrylist[$bootmenu->getID()]),
						'page'		=> $this->page
					),
					'default',
					true) ?>"><img src='/media/img/add.png' alt='Add Entry'/></a>
	  		</div>  
	  		<div class='title'><?php echo $this->escape($bootmenu->getTitle()); ?></div>
	  		<div class='subtitle'><?php echo count($this->bootmenuentrylist[$bootmenu->getID()]);?> Entrys - <?php echo $this->escape($bootmenu->getCreated()); ?></div>
	  		<div class='details dispnone'>
	  			<?php foreach ($this->bootmenuentrylist[$bootmenu->getID()] as $bootmenuentry): ?>
	  			<div class='element'>
			  		<div class='number'><?php echo $this->escape($bootmenuentry->getID()); ?></div>
			  		<div class='content'>  			
				  		<div class='actions'>
				  			<a href="<?php echo $this->url(
								array(						
									'controller' => 'resource',
									'action'     => 'getbootmenuentry',
									'bootmenuentryID'   =>  $bootmenuentry->getID(),
									'page'		=> $this->page
								),
								'default',
								true, false) ?>"><img src='/media/img/play.gif'></a>
				  			<a href="<?php echo $this->url(
								array(
									'module'	=> 'user',
									'controller' => 'bootmenu',
									'action'     => 'editbootmenuentry',
									'bootmenuentryID'   =>  $bootmenuentry->getID(),
									'maxorder' => count($this->bootmenuentrylist[$bootmenu->getID()]),
									'oldorder' => $bootmenuentry->getOrder(),
									'page'		=> $this->page
								),
								'default',
								true, false) ?>"><img src='/media/img/edit.png' alt='Edit Entry'/></a>
					  		<a href="<?php echo $this->url(
								array(
									'module'	=> 'user',
									'controller' => 'bootmenu',
									'action'     => 'removebootmenuentry',
									'bootmenuentryID'   =>  $bootmenuentry->getID(),
									'page'		=> $this->page
								),
								'default',
								true) ?>"><img src='/media/img/delete.png' alt='Remove Entry'/></a>
				  		</div>  
				  		<div class='title'><?php echo $this->escape($bootmenuentry->getTitle()); ?></div>
				  		<div class='subtitle'><?php echo $this->escape($bootmenuentry->getBootosID()) ?></div>
				  		<div class='details dispnone'>
				  			<label>KCL</label>
				  				<div class='item'><?php echo $this->escape($bootmenuentry->getKcl()); ?></div>
				  			<label>KCL-Append</label>
				  				<div class='item'><?php echo $this->escape($bootmenuentry->getKclappend()); ?></div>
				  			<label>ConfigID</label>
				  				<div class='item'><?php echo $this->escape($bootmenuentry->getConfigID()) ?></div>				  				
				  		</div>
			  		</div>
			  		<div class='clear'></div>
				</div>
	  			<?php endforeach; ?>
	  		</div>
  		</div>
  		<div class='clear'></div>
	</div>
	<?php endforeach; ?>
</div>
 
<?php echo $this->pagination; ?>