. if (!defined('EG')) die('Direct access not allowed!'); //class to create the popup menu class Helper_Popup extends Helper_Html { //the HTML of the popup public static $popupHtml = array( "before_loop" => "", "top" => "
\n", "bottom" => "
", "after_loop" => "", ); public $popupArray = array(); //array of popup objects (see popup.php) public $url = null; //the url (controller/action) to link by means of the popup menĂ¹ // public $fieldArg = null; //the key of the viewArgs array to set to the field in the where clause // public $valueArg = null; //the key of the viewArgs array to be set to the value in the where clause public $pageArg = null; //the key of the viewArgs array representing the page number. $this->viewArgs[$this->pageArg] is set to 1 if $this->pageArg !== null //the type of the popup. If type !=exclusive, than each voice selected is added to the where clause. If type=exclusive, the selection of a popup voice causes the unselection of the other voices public $type = null; public $allString = null; //list of popup names public $popupItems = array(); //if it has to print the filter legend public $printLegend = false; //popup legend public $legend = array(); public function __construct() { //get the generic language class $this->strings = Factory_Strings::generic(Params::$language); $this->allString = $this->strings->gtext('All'); } public function build($url, $popupArray = null, $type = 'exclusive', $pageArg = null, $printLegend = false) { $this->url = $url; $this->popupArray = $popupArray; $this->pageArg = $pageArg; $this->type = $type; $this->printLegend = $printLegend; foreach ($this->popupArray as $field => $popup) { $this->popupItems[] = $field; } } //check that the ViewArgs array is complete public function checkViewArgs() { foreach ($this->popupArray as $field => $popup) { if (!array_key_exists($field,$this->viewArgs)) return false; } return true; } //unselect the voices different from the current one public function unselect($currentVoice) { foreach ($this->popupItems as $item) { if (strcmp($item,$currentVoice) !== 0) $this->viewArgs[$item] = Params::$nullQueryValue; } } public function replacePlaceholders($string, $field, $name) { $string = str_replace("[[field]]",$field,$string); $string = str_replace("[[name]]",$name,$string); return $string; } //create the HTML of the popup public function render() { $returnString = self::$popupHtml["before_loop"]; if ($this->checkViewArgs()) { if (isset($this->viewArgs[$this->pageArg])) { $this->viewArgs[$this->pageArg] = 1; } foreach ($this->popupArray as $field => $popup) { //default legend $this->legend[$field] = Params::$nullQueryValue; if ($this->type === 'exclusive') $this->unselect($field); //save the value of the current ViewArg $tempArg = $this->viewArgs[$field]; $this->legend[$field] = $tempArg; $returnString .= $this->replacePlaceholders(self::$popupHtml["top"],$field,$popup->name); for ($i = 0; $i < count($popup->itemsValue); $i++) { $this->viewArgs[$field] = $popup->itemsValue[$i]; $viewStatus = Url::createUrl($this->viewArgs); $returnString .= "
  • ".$popup->itemsName[$i]."
  • \n"; //set the legend if (strcmp($popup->itemsValue[$i],$this->legend[$field]) === 0) { $this->legend[$field] = $popup->itemsName[$i]; } } $this->viewArgs[$field] = Params::$nullQueryValue; $viewStatus = Url::createUrl($this->viewArgs); $returnString .= "
  • ".$this->allString."
  • \n"; $returnString .= self::$popupHtml["middle"]; $this->viewArgs[$field] = $tempArg; if ($this->printLegend) { $returnString .= ""; } $returnString .= self::$popupHtml["bottom"]; } } $returnString .= self::$popupHtml["after_loop"]; return $returnString; } }