mirror of
				https://github.com/e107inc/e107.git
				synced 2025-10-27 03:31:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * e107 website system
 | |
|  *
 | |
|  * Copyright (C) 2008-2015 e107 Inc (e107.org)
 | |
|  * Released under the terms and conditions of the
 | |
|  * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
 | |
|  *
 | |
|  *
 | |
| */
 | |
| 
 | |
| if (!defined('e107_INIT')) { exit; }
 | |
| 
 | |
| //v2.x Standard for extending menu configuration within Menu Manager. (replacement for v1.x config.php)
 | |
| // TODO add fields
 | |
| class page_menu
 | |
| {
 | |
| 	function __construct()
 | |
| 	{
 | |
| 		// e107::lan('_blank','menu',true); // English_menu.php or {LANGUAGE}_menu.php
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Configuration Fields.
 | |
| 	 * @return array
 | |
| 	 */
 | |
| 	public function config($menu='')
 | |
| 	{
 | |
| 
 | |
| 		$fields = array();
 | |
| 		$fields['caption']      = array('title'=> LAN_CAPTION, 'type'=>'text', 'multilan'=>true, 'writeParms'=>array('size'=>'xxlarge'));
 | |
| 
 | |
| 	//	$fields['blankCount']        = array('title'=> "Enabled", 'type'=>'number');
 | |
| 	//	$fields['blankCustom']       = array('title'=> "Enabled", 'type'=>'method'); // see below.
 | |
| 
 | |
|         return $fields;
 | |
| 
 | |
| 	}
 | |
| 
 | |
| }
 | |
| 
 | |
| // optional - for when using custom methods above.
 | |
| /*
 | |
| class _blank_menu_form extends e_form
 | |
| {
 | |
| 
 | |
| 	function blankCustom($curVal)
 | |
| 	{
 | |
| 
 | |
| 		$frm = e107::getForm();
 | |
| 		$opts = array(1,2,3,4);
 | |
| 		$frm->select('blankCustom', $opts, $curVal);
 | |
| 
 | |
| 
 | |
| 	}
 | |
| 
 | |
| 
 | |
| }*/
 | |
| 
 | |
| 
 |