Ferreteria/v2/class/fcToggleLink

From Woozle Writes Code
< Ferreteria‎ | v2‎ | class
Revision as of 16:16, 19 January 2019 by htyp>Woozle (Created page with "{{page/code/class}} <source lang=php> class fcToggleLink extends fcDynamicLink { /*---- OVERRIDE - removes self from the URL when selected, so that clicking again un...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

class fcToggleLink extends fcDynamicLink {
    /*----
      OVERRIDE - removes self from the URL when selected, so that clicking again un-toggles state
    */
    protected function GetLinkArray_figured() {
	$isSel = $this->GetIsSelected();
	if ($isSel) {
	    $arPath = array();
	} else {
	    $arPath = $this->GetLinkArray_self();
	}
	return $arPath;
    }
}