Skip to content

Commit

Permalink
Edit Custom class
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciuspugliese committed Oct 16, 2017
1 parent bd43762 commit b3b2ffa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/DynamicMenu/Customizations/Attributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public function setUlDropdown(array $ul_dropdown)
{
foreach ($ul_dropdown as $key => $value) {
$this->handlerKey('ul_dropdown', $key);
$this->ul_dropdown[$key] = $value;
}

return $this;
Expand All @@ -108,6 +109,7 @@ public function setLiDropdown(array $li_dropdown)
{
foreach ($li_dropdown as $key => $value) {
$this->handlerKey('li_dropdown', $key);
$this->li_dropdown[$key] = $value;
}

return $this;
Expand All @@ -123,6 +125,7 @@ public function setLi(array $li)
{
foreach ($li as $key => $value) {
$this->handlerKey('li', $key);
$this->li[$key] = $value;
}

return $this;
Expand All @@ -138,6 +141,7 @@ public function setADropdown(array $a_dropdown)
{
foreach ($a_dropdown as $key => $value) {
$this->handlerKey('a_dropdown', $key);
$this->a_dropdown[$key] = $value;
}

return $this;
Expand All @@ -153,6 +157,7 @@ public function setA(array $a)
{
foreach ($a as $key => $value) {
$this->handlerKey('a', $key);
$this->a[$key] = $value;
}

return $this;
Expand Down

0 comments on commit b3b2ffa

Please sign in to comment.