joomla_test/modules/mod_roknavmenu/lib/librokmenu/RokMenuTheme.php
2020-01-02 22:20:31 +07:00

37 lines
783 B
PHP

<?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);
}
}