コード例 #1
0
ファイル: Item.php プロジェクト: ARCANESOFT/Core
 /**
  * Set the current name.
  *
  * @param  string  $currentName
  *
  * @return self
  */
 public function setCurrent($currentName)
 {
     $this->children->setCurrent($currentName);
     $this->active = $this->name === $currentName || $this->children->hasActiveItem();
     return $this;
 }