mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-23 06:59:28 +00:00
15 lines
250 B
PHP
15 lines
250 B
PHP
<?php
|
|
require_once APPPATH . 'libraries/treemenu/TreeMenuLib.php';
|
|
/**
|
|
* Description of StvMenuLib
|
|
*
|
|
* @author bambi
|
|
*/
|
|
class StvMenuLib extends TreeMenuLib
|
|
{
|
|
public function getNodes($params=array(), $includeSubMenu=false)
|
|
{
|
|
return [];
|
|
}
|
|
}
|