Subversion Repositories wpShopGermany4

Rev

Rev 5945 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5945 Rev 7555
Line 86... Line 86...
86
-->				 		
86
-->				 		
87
					</ul>
87
					</ul>
88
				</div>
88
				</div>
89
			</div>
89
			</div>
90
		</nav>
90
		</nav>
91
	</div>
-
 
92
 
91
		 
93
	<div id="wpsg-bs" >
-
 
94
		<div class="wpsg_admin_submenu" >
92
		<div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
95
			
-
 
96
			<div class="list-group" id="wpsg_statistics_tabs">
93
		<div class="wpsg_clear"></div>
97
				<span class="list-group-head list-group-item"><?php echo __('Auswahl', 'wpsg'); ?></span>
-
 
98
			
-
 
99
			<?php foreach ($this->view['charts'] as $index => $chart) { ?>
-
 
100
	
94
	
101
				<a class="list-group-item <?php echo ((strtolower($index) == $_REQUEST['id'])?'active':''); ?>" href="admin.php?page=wpsg-Statistics&amp;id=<?php echo wpsg_hspc($index); ?>"><?php echo wpsg_hspc($chart['name']); ?></a>
95
		<div style="display:flex; flex-direction:row; justify-content:flex-start; align-items:flex-start;">
102
			
96
			
103
			<?php } ?>
-
 
104
			</div>
-
 
105
	
-
 
106
			<div style="clear:both; margin-bottom:10px; margin-left:0px; margin-right:8px;"></div>
97
			<div class="wpsg_admin_submenu">
107
				
98
				
108
		</div>
99
				<div class="list-group" id="wpsg_statistics_tabs">
109
	</div>
-
 
-
 
100
					<span class="list-group-head list-group-item"><?php echo __('Auswahl', 'wpsg'); ?></span>
110
	
101
				
111
	<div style="padding-right:10px; margin-left:210px; float:none;" class="subsubsub">
102
				<?php foreach ($this->view['charts'] as $index => $chart) { ?>
112
		
103
		
113
		<?php 
-
 
114
			
-
 
115
			if (wpsg_isSizedString($this->view['chart']['data']['template']))
-
 
116
			{
-
 
117
				$templateFile = $this->view['chart']['data']['template'].'.phtml';		
-
 
118
			}
-
 
119
			else
-
 
120
			{
-
 
121
				$templateFile = str_replace('get', '', strtolower($this->view['standardFilter'][$this->view['filter']['standard']]['func']).'.phtml');
104
					<a class="list-group-item <?php echo ((strtolower($index) == $_REQUEST['id'])?'active':''); ?>" href="admin.php?page=wpsg-Statistics&amp;id=<?php echo wpsg_hspc($index); ?>"><?php echo wpsg_hspc($chart['name']); ?></a>
122
			}
-
 
123
				
105
				
-
 
106
				<?php } ?>
-
 
107
				</div>
-
 
108
		 
-
 
109
			</div> 
-
 
110
		
-
 
111
			<div style="padding-left:15px;" class="stat_content">
-
 
112
				
-
 
113
				<?php 
-
 
114
					
-
 
115
					if (wpsg_isSizedString($this->view['chart']['data']['template']))
-
 
116
					{
-
 
117
						$templateFile = $this->view['chart']['data']['template'].'.phtml';		
-
 
118
					}
-
 
119
					else
-
 
120
					{
-
 
121
						$templateFile = str_replace('get', '', strtolower($this->view['standardFilter'][$this->view['filter']['standard']]['func']).'.phtml');
-
 
122
					}
-
 
123
						
124
			$templatePath = WPSG_PATH_VIEW.'/mods/mod_statistics/'.strtolower($this->view['charts'][$_REQUEST['id']]['func']).'/'.$templateFile;
124
					$templatePath = WPSG_PATH_VIEW.'/mods/mod_statistics/'.strtolower($this->view['charts'][$_REQUEST['id']]['func']).'/'.$templateFile;
125
			
125
					
126
			if (is_file($templatePath)) 
126
					if (is_file($templatePath)) 
127
			{ 
127
					{ 
128
				$this->render($templatePath); 
128
						$this->render($templatePath); 
129
			} 
129
					} 
130
			else 
130
					else 
131
			{ 
131
					{ 
-
 
132
						
-
 
133
						wpsg_debug($templatePath);
-
 
134
						echo '<strong>'.__('Ungültige Anfrage', 'wpsg').'</strong>';
-
 
135
						 
-
 
136
					} 
-
 
137
				?>
132
				
138
				
133
				wpsg_debug($templatePath);
139
			</div>
134
				echo '<strong>'.__('Ungültige Anfrage', 'wpsg').'</strong>';
-
 
135
				 
140
			
136
			} 
-
 
137
		?>
141
		</div>
138
		
142
		
139
	</div>
-
 
140
	
-
 
141
	<div style="clear:both; margin-bottom:10px; margin-left:0px; margin-right:8px;"></div>
-
 
142
143
	</div>
-
 
144
143
145