dashlets = $dashlets; return $this; } /** * Return this pane's dashlets * * @param bool $ordered Whether to order the dashlets first * * @return array */ public function getDashlets($ordered = true) { if ($this->dashlets === null) { return array(); } if ($ordered) { $dashlets = $this->dashlets; ksort($dashlets); return $dashlets; } return $this->dashlets; } /** * {@inheritdoc} */ public function init() { $this->setUrl(Url::fromPath('dashboard', array('pane' => $this->getName()))); } /** * Set disabled state for pane * * @param bool $disabled */ public function setDisabled($disabled = true) { $this->disabled = (bool) $disabled; } /** * Get disabled state for pane * * @return bool */ public function getDisabled() { return $this->disabled; } }