You've already forked joomla_test
first commit
This commit is contained in:
36
modules/mod_roknavmenu/lib/librokmenu/RokMenuTheme.php
Normal file
36
modules/mod_roknavmenu/lib/librokmenu/RokMenuTheme.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* @version $Id: RokMenuTheme.php 4585 2012-10-27 01:44:54Z btowles $
|
||||
* @author RocketTheme http://www.rockettheme.com
|
||||
* @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
|
||||
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
|
||||
*/
|
||||
if (!interface_exists('RokMenuTheme')) {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
interface RokMenuTheme {
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @return array
|
||||
*/
|
||||
public function getDefaults();
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @param $args array
|
||||
* @return RokMenuFormatter
|
||||
*/
|
||||
public function getFormatter($args);
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @param $args
|
||||
* @return RokMenuLayout
|
||||
*/
|
||||
public function getLayout($args);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user