mirror of
				https://github.com/brmlab/brmbiolab_sklad.git
				synced 2025-10-30 23:14:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Application level View Helper
 | |
|  *
 | |
|  * This file is application-wide helper file. You can put all
 | |
|  * application-wide helper-related methods here.
 | |
|  *
 | |
|  * @link          http://cakephp.org CakePHP(tm) Project
 | |
|  * @package       app.View.Helper
 | |
|  * @since         CakePHP(tm) v 0.2.9
 | |
|  */
 | |
| 
 | |
| App::uses('Helper', 'View');
 | |
| 
 | |
| /**
 | |
|  * Application helper
 | |
|  *
 | |
|  * Add your application-wide methods in the class below, your helpers
 | |
|  * will inherit them.
 | |
|  *
 | |
|  * @package       app.View.Helper
 | |
|  */
 | |
| class AppHelper extends Helper {
 | |
| }
 | 
