Release 2.0

This commit is contained in:
Artur
2019-01-25 02:21:35 -02:00
parent 9b78ca484c
commit 8cb8e98154
4 changed files with 234 additions and 166 deletions
+1 -2
View File
@@ -12,6 +12,5 @@
"psr-4" : { "psr-4" : {
"MenuBuilder\\" : "src/MenuBuilder/" "MenuBuilder\\" : "src/MenuBuilder/"
} }
}, }
"require" : { }
} }
+19
View File
@@ -0,0 +1,19 @@
<?php
use MenuBuilder\Menu as Menu;
use MenuBuilder\MenuItem as MenuItem;
include_once './src/MenuBuilder/HtmlBuilder.php';
include_once './src/MenuBuilder/Menu.php';
include_once './src/MenuBuilder/MenuItem.php';
$sidebar = new Menu( array('id' => 'side-menu', 'class' => "nav") );
$sidebar->create_submenu('basico', 'Basico', '', Array(), 2);
$sidebar->add_on_new('basico', '', 'Usuarios');
$sidebar->create_submenu('administrativo', 'Administrativo');
$sidebar->add_on_new('basico', '', 'Geografico', '', Array(), -1);
echo $sidebar->render();
+42 -19
View File
@@ -25,8 +25,8 @@ class Menu {
*/ */
protected $items = []; protected $items = [];
public function items(){ public function items() {
return $this->items; return $this->items;
} }
/** /**
@@ -40,9 +40,45 @@ class Menu {
$this->html = new HtmlBuilder; $this->html = new HtmlBuilder;
} }
public function addDirect($menu){ public function addDirect($menu) {
$this->items[] = $menu; $this->items[] = $menu;
return $this; return $this;
}
public function create_submenu($name, $title, $icon = '', $attributes = [], $weight = 0) {
$menu_item = false;
foreach ($this->items as $item) {
if ($item->name == $name) {
$menu_item = $item;
//$menu_item = $item->nested();
break;
}
}
if (!$menu_item) {
$menu = new MenuItem();
$menu = $menu->title($title)->icon($icon)->attributes($attributes)->weight($weight)->name($name);
$menu = $menu->nest(new Menu(Array('class' => 'nav nav-ident')));
$menu_item = $menu->nested();
$this->items[] = $menu;
} else {
if (!$title == null) {
$menu_item->title($title)->icon($icon)->attributes($attributes)->weight($weight)->name($name);
$menu_item = $menu_item->nested();
}else{
$menu_item = $menu_item->nested();
}
}
return $menu_item;
}
public function add_on($name, MenuItem $item) {
$this->create_submenu($name)->items[] = $item;
}
public function add_on_new($name, $link, $title, $icon = '', $attributes = [], $weight = 0) {
$menu_item = $this->create_submenu($name, null);
$menu = new MenuItem();
$menu_item->items[] = $menu->link($link)->title($title)->icon($icon)->attributes($attributes)->weight($weight)->name($name);
} }
/** /**
@@ -94,7 +130,7 @@ class Menu {
return implode(PHP_EOL, $menu); return implode(PHP_EOL, $menu);
} }
public function renderRaw(){ public function renderRaw() {
$menu[] = ""; $menu[] = "";
foreach ($this->items as $item) { foreach ($this->items as $item) {
$menu[] = $item->renderRaw(); $menu[] = $item->renderRaw();
@@ -113,19 +149,6 @@ class Menu {
}); });
} }
/*private function merge(){
$new_array = Array();
foreach($items as $key => $item){
foreach($items as $item_){
if( $item->title == $item_->title ){
}
}
}
}*/
/** /**
* Render the menu. * Render the menu.
* *
+156 -129
View File
@@ -3,144 +3,171 @@
namespace MenuBuilder; namespace MenuBuilder;
class MenuItem { class MenuItem {
/**
* HTML builder instance.
*
* @var Menu\HtmlBuilder
*/
protected $html;
/**
* Menu item title.
*
* @var string
*/
protected $title;
/**
* Menu item link.
*
* @var string
*/
protected $link;
/**
* Nested menu.
*
* @var Menu\Menu
*/
protected $nested;
/**
* Array of attributes.
*
* @var array
*/
protected $attributes = [];
/**
* Create a new menu item instance.
*
*/
public $icon = ''; /**
public $weight = 0; * HTML builder instance.
*
* @var Menu\HtmlBuilder
*/
protected $html;
public function __construct() /**
{ * Menu item title.
$this->html = new HtmlBuilder; *
} * @var string
/** */
* Set the menu item link. protected $title;
*
* @param string $link
* @return Menu\MenuItem
*/
public function link($link)
{
$this->link = $link;
return $this;
}
/**
* Set the menu item title.
*
* @param string $link
* @return Menu\MenuItem
*/
public function title($title)
{
$this->title = $title;
return $this;
}
public function weight($weight = 0){ /**
$this->weight = $weight; * Menu item link.
return $this; *
} * @var string
*/
protected $link;
public function icon($icon = ''){ /**
$this->icon = $icon; * Menu item name.
return $this; *
} * @var string
/** */
* Set the menu item attributes. public $name;
*
* @param array $attributes
* @return Menu\MenuItem
*/
public function attributes(array $attributes)
{
$this->attributes = $attributes;
return $this;
}
/** /**
* Nest another menu. * Nested menu.
* *
* @param Menu\Menu $menu * @var Menu\Menu
* @return Menu\MenuItem */
*/ protected $nested;
public function nest(Menu $menu)
{
$this->nested = $menu;
return $this;
}
/** /**
* Render the menu item. * Array of attributes.
* *
* @return string * @var array
*/ */
public function render() protected $attributes = [];
{
return '<li>'.$this->html->link($this->link, $this->title, $this->icon, $this->attributes).$this->renderNestedMenu().'</li>';
}
/** /**
* Render the nested menu. * Create a new menu item instance.
* *
* @return string */
*/ public $icon = '';
public function renderNestedMenu() public $weight = 0;
{
if ($this->nested)
{
return $this->nested->render();
}
}
/**
* Render the menu item.
*
* @return string
*/
public function __toString()
{
return $this->render();
}
public static function newMenu($link = '', $title = '', $icon = '' ){ public function __construct() {
$menu = new MenuItem(); $this->html = new HtmlBuilder;
}
$menu->link($link); /**
$menu->title($title); * Set the menu item link.
$menu->icon = $icon; *
* @param string $link
* @return Menu\MenuItem
*/
public function link($link) {
$this->link = $link;
return $this;
}
/**
* Set the menu item name.
*
* @param string $name
* @return Menu\MenuItem
*/
public function name($name) {
$this->name = $name;
return $this;
}
/**
* Set the menu item title.
*
* @param string $link
* @return Menu\MenuItem
*/
public function title($title) {
$this->title = $title;
return $this;
}
public function weight($weight = 0) {
$this->weight = $weight;
return $this;
}
public function icon($icon = '') {
$this->icon = $icon;
return $this;
}
/**
* Set the menu item attributes.
*
* @param array $attributes
* @return Menu\MenuItem
*/
public function attributes(array $attributes) {
$this->attributes = $attributes;
return $this;
}
/**
* Nest another menu.
*
* @param Menu\Menu $menu
* @return Menu\MenuItem
*/
public function nest(Menu $menu) {
$this->nested = $menu;
return $this;
}
/**
* Nest another menu.
*
* @param Menu\Menu $menu
* @return Menu\MenuItem
*/
public function nested() {
return $this->nested;
}
/**
* Render the menu item.
*
* @return string
*/
public function render() {
return '<li>' . $this->html->link($this->link, $this->title, $this->icon, $this->attributes) . $this->renderNestedMenu() . '</li>';
}
/**
* Render the nested menu.
*
* @return string
*/
public function renderNestedMenu() {
if ($this->nested) {
return $this->nested->render();
}
}
/**
* Render the menu item.
*
* @return string
*/
public function __toString() {
return $this->render();
}
public static function newMenu($link = '', $title = '', $icon = '') {
$menu = new MenuItem();
$menu->link($link);
$menu->title($title);
$menu->icon = $icon;
return $menu; return $menu;
} }
} }