27 lines
672 B
PHP
27 lines
672 B
PHP
<?php
|
|
/**
|
|
* @version $Id: AbstractRokMenuTheme.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
|
|
*/
|
|
|
|
require_once(dirname(__FILE__) . '/RokMenuTheme.php');
|
|
|
|
if (!class_exists('AbstractRokMenuTheme')) {
|
|
|
|
abstract class AbstractRokMenuTheme implements RokMenuTheme {
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $defaults = array();
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getDefaults() {
|
|
return $this->defaults;
|
|
}
|
|
}
|
|
}
|