Project

General

Profile

1
<?php
2
/**
3
* @package   Warp Theme Framework
4
* @author    YOOtheme http://www.yootheme.com
5
* @copyright Copyright (C) YOOtheme GmbH
6
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
7
*/
8

    
9
/*
10
	Class: WarpMenu
11
		Menu base class
12
*/
13
class WarpMenu {
14

    
15
	/*
16
		Function: process
17
			Abstract function. New implementation in child classes.
18

    
19
		Returns:
20
			Object
21
	*/
22
	public function process($module, $element) {
23
		return $element;
24
	}
25

    
26
}
(3-3/3)