aboutsummaryrefslogtreecommitdiff
path: root/h-source/Library/Helper
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-05-28 15:28:35 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-05-28 15:28:35 +0000
commit054086b33dad4c4f7089cf2ebf0f52eed1d7a023 (patch)
treed78d83a895e239b3495e9ac52ecee0107b2a2f61 /h-source/Library/Helper
parent7097598d5576ba5e9391b43f26bfc037c08d61c3 (diff)
administrators can now view the actions of a single user in a compact format
Diffstat (limited to 'h-source/Library/Helper')
-rwxr-xr-xh-source/Library/Helper/Array.php28
-rwxr-xr-xh-source/Library/Helper/Html.php31
-rwxr-xr-xh-source/Library/Helper/List.php496
-rwxr-xr-xh-source/Library/Helper/Menu.php109
-rwxr-xr-xh-source/Library/Helper/Pages.php132
-rwxr-xr-xh-source/Library/Helper/Popup.php142
-rw-r--r--h-source/Library/Helper/index.html1
7 files changed, 0 insertions, 939 deletions
diff --git a/h-source/Library/Helper/Array.php b/h-source/Library/Helper/Array.php
deleted file mode 100755
index 329463f..0000000
--- a/h-source/Library/Helper/Array.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//Helper class to manage arrays
-class Helper_Array extends ArrayExt {
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/Html.php b/h-source/Library/Helper/Html.php
deleted file mode 100755
index 81a9bdd..0000000
--- a/h-source/Library/Helper/Html.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//base class of all the Helper classes that returns HTML
-class Helper_Html {
-
- public $viewArgs = array(); //arguments of the view action (to mantain the status, ex: page,language,etc)
- public $viewStatus = null; //additional string to the url to define the status of the view action (ex: page,language,etc)
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/List.php b/h-source/Library/Helper/List.php
deleted file mode 100755
index ba59643..0000000
--- a/h-source/Library/Helper/List.php
+++ /dev/null
@@ -1,496 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//class to create the HTML of a list of records
-class Helper_List extends Helper_Html {
-
- private $__rowArray = array(); //the current associative array representing the database record
-
- protected $_itemsList = array(); //2-dimensional associative array containing the list items
- //keys: type,table:field,controller/action,value
- protected $_head = array(); //2-dimensional array containing the head of the table
- protected $_identifierName;
-
- protected $_recordNumber = null; //number of records from the table
-
- protected $_allowedItems = array('simpleLink','simpleText','delForm','editForm','associateForm','moveupForm','movedownForm','Form','ledit','link','text'); //type of items allowed
-
- //it can be: both, top, bottom, none
- protected $_boundaries = 'none';
-
- //array of filters
- protected $_filters = array();
-
- //set if the submit buttons have to be images or not (it can be yse or not)
- public $submitImageType = 'yes';
-
- //set the files of the images
- public $submitImages = array();
-
- //set the titles of the input:submit
- public $submitTitles = array();
-
- //properties of columns
- public $colProperties = array();
-
- //table attributes
- public $tableAttributes = array('class'=>'listTable','cellspacing'=>'0');
-
- //$position: array. First element: page number, second element: number of pages
- public $position = array();
-
- //instance of Lang_{language}_Generic
- public $strings = null;
-
- //the url (controller/action) of the current page
- public $url = null;
-
- 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
-
- public function __construct() {
-
- //get the generic language class
- $this->strings = Factory_Strings::generic(Params::$language);
-
- $baseUrl = 'http://'.DOMAIN_NAME.'/Public/Img/Icons/elementary_2_5/';
-
- //set the files of the images
- $this->submitImages = array(
- 'up' => $baseUrl.'up.png',
- 'down' => $baseUrl.'down.png',
- 'edit' => $baseUrl.'edit.png',
- 'del' => $baseUrl.'delete.png',
- 'link' => $baseUrl.'link.png',
- );
-
- $this->submitTitles = array(
- 'edit' => $this->strings->gtext('edit'),
- 'del' => $this->strings->gtext('delete'),
- 'up' => $this->strings->gtext('move up'),
- 'down' => $this->strings->gtext('move down'),
- 'link' => $this->strings->gtext('associate')
- );
-
- }
-
- public function build($identifierName = 'identifier', $url = null, $pageArg = null)
- {
- $this->_identifierName = $identifierName;
- $this->url = $url;
- $this->pageArg = $pageArg;
- }
-
- public function setIdentifierName($identifierName)
- {
- $this->_identifierName = $identifierName;
- }
-
- //add a list Item. $type: the type of the item, $field: the table.field to exctract (use colon to separate the table and the field),$action: controller/action,$value=if type == link->the value of the link
- public function addItem($type, $action = '', $field = '', $name = '', $value = '', $title = '') {
- if (!in_array($type,$this->_allowedItems)) {
- throw new Exception('"'.$type. '" argument not allowed in '.__METHOD__.' method');
- }
- $temp=array();
- $temp['type'] = $type;
- $temp['action'] = $action;
- $temp['field'] = $field;
- $temp['name'] = $name;
- $temp['value'] = $value;
- $temp['title'] = $title;
- $this->_itemsList[] = $temp;
-
- //set the $this->_head array
- $head = array();
- $head['type'] = $type;
-
- if ($type === 'simpleText') {
- $head['action'] = $this->extractFieldName($action);
- } else {
- $head['action'] = '&nbsp';
- }
- $this->_head[] = $head;
- }
-
-
- //set the head of the table
- //$columnsName: name of the columns. It has to be a comma-separated list of strings
- public function setHead($columnsName = '')
- {
- //get the array from the list
- $columnsArray = explode(',',$columnsName);
- for ($i = 0; $i < count($columnsArray); $i++)
- {
- if ($i < count($this->_itemsList)) $this->_head[$i]['action'] = $columnsArray[$i];
- }
- }
-
- //set the filters
- //$filters: array whose elements are the viewArgs to be used for the filters forms
- public function setFilters($filters)
- {
- $this->_filters = $filters;
- }
-
- //check that the ViewArgs array is complete
- public function checkViewArgs()
- {
- foreach ($this->_filters as $field)
- {
- if (!array_key_exists($field,$this->viewArgs) and strcmp($field,null) !== 0) return false;
- }
- return true;
- }
-
- //$method to extract the field name from the $action string (;table:field;). Used for the head
- public function extractFieldName($string) {
- $string = str_replace(';','',$string);
- return $string;
- }
-
- //replace the strings wrapped by ; with their correspondent value taken by the $recordArray associative array (a row of the select query)
- public function replaceFields($string,$rowArray) {
- $this->__rowArray = $rowArray; //used by the replaceField method
-
- $string = preg_replace_callback('/(\;)(.*?)(\;)/', 'Helper_List::replaceField' ,$string);
-
- return $string;
- }
-
- //replace a single string wrapped by ; with its correspondent value taken by the $recordArray associative array (a row of the select query)
- public function replaceField($match)
- {
- $string = $match[2];
-
- if (strstr($string,':') or strstr($string,'.')) {
- if (strstr($string,':'))
- {
- $char = ':';
- }
- else
- {
- $char = '.';
- }
- //check if a function has been indicated
- if (strstr($string,'|'))
- {
- //get the function
- $firstArray = explode('|',$string);
- $func = $firstArray[0];
- //replace the fields
- $temp = explode($char,$firstArray[1]);
- $string = $this->__rowArray[$temp[0]][$temp[1]];
-
- if (!function_exists($func)) {
- throw new Exception('Error in <b>'.__METHOD__.'</b>: function <b>'.$func.'</b> does not exists..');
- }
- //apply the function
- $string = call_user_func($func,$string);
- }
- else
- {
- $temp = explode($char,$string);
- $string = $this->__rowArray[$temp[0]][$temp[1]];
- }
- }
- return $string;
- }
-
- //call the method replaceFields upon the $items array using the associative array $rowArray
- public function replaceAll($item,$rowArray) {
- $item['action'] = $this->replaceFields($item['action'],$rowArray);
- $item['field'] = $this->replaceFields($item['field'],$rowArray);
- $item['name'] = $this->replaceFields($item['name'],$rowArray);
- $item['value'] = $this->replaceFields($item['value'],$rowArray);
- $item['title'] = $this->replaceFields($item['title'],$rowArray);
- return $item;
- }
-
- //wrap the column with the tag td
- public function wrapColumn($string, $className = null) {
- return wrap($string,array('td'=>$className));
- }
-
- //wrap the row with the tag tr
- public function wrapRow($string,$className = null) {
- return wrap($string,array('tr'=>$className));
- }
-
- public function wrapList($string) {
- return wrap($string,array('table'=>$this->tableAttributes));
- }
-
- //method to create the HTML of the head of the table
- public function createHead() {
- $htmlHead = null;
-
- $count = 0;
- foreach ($this->_head as $item) {
- $temp = $item['action'];
-
- $prop = $item['type'];
- if (isset($this->colProperties[$count]))
- {
- $prop = $this->colProperties[$count];
- }
-
- $htmlHead .= $this->wrapColumn($temp,$prop);
-
- $count++;
- }
-
- return $htmlHead;
- }
-
- //method to create the HTML of the head of the table
- public function createFilters() {
- $htmlFilters = null;
-
- if (count($this->_filters) > 0)
- {
- if ($this->checkViewArgs())
- {
- $count = 0;
- foreach ($this->_head as $item) {
-
- $prop = $item['type'];
- if (isset($this->colProperties[$count]))
- {
- $prop = $this->colProperties[$count];
- }
-
- $html = '&nbsp';
- if (isset($this->_filters[$count]))
- {
- $html = $this->filterForm($this->_filters[$count]);
- }
- $htmlFilters .= $this->wrapColumn($html,$prop);
-
- $count++;
- }
- }
- }
-
- return $htmlFilters;
- }
-
- //create the HTML of a single row (values taken from the associative array $rowArray)
- public function getRowList($rowArray) {
- $htmlList = null;
-
- $count = 0;
- foreach ($this->_itemsList as $item) {
- $item = $this->replaceAll($item,$rowArray);
-
- $prop = $item['type'];
- if (isset($this->colProperties[$count]))
- {
- $prop = $this->colProperties[$count];
- }
-
- if (($this->_boundaries === 'top' and $item['type'] === 'moveupForm') or ($this->_boundaries === 'bottom' and $item['type'] === 'movedownForm') or ($this->_boundaries === 'both' and ($item['type'] === 'moveupForm' or $item['type'] === 'movedownForm')))
- {
- $htmlList .= $this->wrapColumn('&nbsp',$prop);
- }
- else
- {
- $temp = call_user_func_array(array($this,$item['type']),array($item));
- $htmlList .= $this->wrapColumn($temp,$prop);
- }
- $count++;
- }
- return $htmlList;
- }
-
- //$index: record number
- public function ifInBoundaries($index)
- {
- $this->_boundaries = 'none';
-
- if (!empty($this->position))
- {
- if ($this->_recordNumber === 1 and strcmp($this->position[0],1) === 0)
- {
- $this->_boundaries = 'both';
- }
- else if ($index === 0 and strcmp($this->position[0],1) === 0)
- {
- $this->_boundaries = 'top';
- }
- else if ($index === ($this->_recordNumber-1) and strcmp($this->position[0],$this->position[1]) === 0)
- {
- $this->_boundaries = 'bottom';
- }
- }
-
- }
-
- //create the HTML of the entire list. $queryResult: the array coming from the select query
- public function render($queryResult)
- {
- //set the number of records
- $this->_recordNumber = count($queryResult);
- $htmlList = null;
- //create the HTML of the head of the record list
- $htmlList .= $this->wrapRow($this->createHead(),'listHead');
- //create the HTML of the filters
- $htmlList .= $this->wrapRow($this->createFilters(),'listFilters');
- for ($i = 0; $i < count($queryResult); $i++)
- {
- $this->ifInBoundaries($i);
- $temp = $this->getRowList($queryResult[$i]);
- $htmlList .= $this->wrapRow($temp,'listRow');
- }
- return $this->wrapList($htmlList);
- }
-
- public function generalForm($itemArray, $submitName, $submitValue)
- {
- $string = "<form class='listItemForm' action='".Url::getRoot(null).$itemArray['action'].$this->viewStatus."' method='POST'>\n";
- $name = (strcmp($itemArray['name'],'') !== 0) ? $itemArray['name'] : $submitName;
- $value = (strcmp($itemArray['value'],'') !== 0) ? $itemArray['value'] : $submitValue;
-
- $oldValue = $value;
- $value = $this->strings->gtext($value);
-
- if (strcmp($itemArray['title'],'') !== 0)
- {
- $title = "title='".$itemArray['title']."'";
- }
- else
- {
- $title = isset($this->submitTitles[$oldValue]) ? "title='".$this->submitTitles[$oldValue]."'" : null;
- }
-
- if (strcmp($this->submitImageType,'yes') === 0 and isset($this->submitImages[$oldValue]))
- {
- $imgSrc = $this->submitImages[$oldValue];
-
- $string .= "<input type='image' $title src='".$imgSrc."' value='$value'>\n";
- $string .= "<input type='hidden' name='".$name."' value='$value'>\n";
- }
- else
- {
- $string .= "<input type='submit' $title name='".$name."' value='$value'>\n";
- }
-
- $string .= "<input type='hidden' name='".$this->_identifierName."' value='".$itemArray['field']."'>\n";
- $string .= "</form>\n";
- return $string;
- }
-
- public function Form($itemArray)
- {
- return $this->generalForm($itemArray, 'name_missing', 'value_missing');
- }
-
- public function moveupForm($itemArray)
- {
- return $this->generalForm($itemArray, 'moveupAction', 'up');
- }
-
- public function movedownForm($itemArray)
- {
- return $this->generalForm($itemArray, 'movedownAction', 'down');
- }
-
- public function editForm($itemArray)
- {
- return $this->generalForm($itemArray, 'generalAction', 'edit');
- }
-
- public function delForm($itemArray)
- {
- return $this->generalForm($itemArray, 'delAction', 'del');
- }
-
- public function associateForm($itemArray)
- {
- return $this->generalForm($itemArray, 'generalAction', 'link');
- }
-
- public function simpleText($itemArray) {
- $text = strcmp($itemArray['action'],'') !== 0 ? $itemArray['action'] : '&nbsp';
- $string = "<span class='textItem'>".$text."</span>\n";
- return $string;
- }
-
- public function text($itemArray)
- {
- return $this->simpleText($itemArray);
- }
-
- public function simpleLink($itemArray) {
- $string = "<a title='".$itemArray['field']."' class='linkItem' href='".Url::getRoot(null).$itemArray['action'].$this->viewStatus."'>".$itemArray['name']."</a>\n";
- return $string;
- }
-
- public function link($itemArray)
- {
- return $this->simpleLink($itemArray);
- }
-
- public function ledit($itemArray)
- {
- $text = isset($this->submitImages['edit']) ? "<img src='".$this->submitImages['edit']."'>" : $itemArray['name'];
- $title = isset($this->submitTitles['edit']) ? $this->submitTitles['edit'] : $itemArray['field'];
- $string = "<a title='".$title."' class='linkItem' href='".Url::getRoot(null).$itemArray['action'].$this->viewStatus."'>$text</a>\n";
- return $string;
- }
-
- //create the HTML of the filter
- public function filterForm($viewArgsName)
- {
- $cleanName = str_replace('n!',null,$viewArgsName);
- $cleanName = str_replace('-',null,$cleanName);
-
- if (isset($this->viewArgs[$this->pageArg]))
- {
- $this->viewArgs[$this->pageArg] = 1;
- }
-
- $temp = $value = $this->viewArgs[$viewArgsName];
- //set the viewArg to the null query value
- if (Params::$nullQueryValue)
- {
- $this->viewArgs[$viewArgsName] = Params::$nullQueryValue;
- $viewStatus = Url::createUrl(array_values($this->viewArgs));
- if (strcmp($value,Params::$nullQueryValue) === 0) $value = '';
- }
- $this->viewArgs[$viewArgsName] = $temp;
-
- $action = Url::getRoot($this->url).$viewStatus;
- $imgSrc = Url::getRoot('Public/Img/Icons/elementary_2_5/find.png');
- $title = $this->strings->gtext('filter');
- $clearLinkTitle = $this->strings->gtext('clear the filter');
-
- $html = "<form class='list_filter_form list_filter_form_$cleanName' action='".$action."' method='GET'>\n";
- $html .= "<input class='list_filter_input list_filter_input_$cleanName' type='text' name='$viewArgsName' value='".$value."'>";
- $html .= "<a class='list_filter_clear_link list_filter_clear_link_$cleanName' title='$clearLinkTitle' href='$action'><img src='".Url::getRoot()."/Public/Img/Icons/elementary_2_5/clear_filter.png' /></a>";
- $html .= "<input class='list_filter_submit list_filter_submit_$cleanName' type='image' title='$title' src='".$imgSrc."' value='trova'>\n";
- $html .= "</form>\n";
-
- return $html;
- }
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/Menu.php b/h-source/Library/Helper/Menu.php
deleted file mode 100755
index 8fd4bf4..0000000
--- a/h-source/Library/Helper/Menu.php
+++ /dev/null
@@ -1,109 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//class to write the top menĂ¹ of the view files
-class Helper_Menu extends Helper_Html
-{
-
- public $panelController; //panel controller
- public $controller;
-
- public $links = array();
-
- //instance of Lang_{language}_Generic
- public $strings = null;
-
- public function __construct()
- {
- $baseUrl = "http://".DOMAIN_NAME.'/Public/Img/Icons/elementary_2_5/';
-
- //get the generic language class
- $this->strings = Factory_Strings::generic(Params::$language);
-
- $this->links = array(
-
- 'back' => array(
- 'title' => $this->strings->gtext('back'),
- 'class' => 'mainMenuItem',
- 'text' => $this->strings->gtext('Back'),
- 'url' => 'main',
- 'icon' => $baseUrl."left.png",
- ),
-
- 'add' => array(
- 'title' => $this->strings->gtext('add a new record'),
- 'class' => 'mainMenuItem',
- 'text' => $this->strings->gtext('Add'),
- 'url' => 'form/insert',
- 'icon' => $baseUrl."add.png",
- ),
-
- 'panel' => array(
- 'title' => $this->strings->gtext('back to the Panel'),
- 'class' => 'mainMenuItem',
- 'text' => $this->strings->gtext('Panel'),
- 'url' => 'main',
- 'icon' => $baseUrl."panel.png",
- )
-
- );
- }
-
- public function build($controller = null, $panelController = null)
- {
- $this->controller = $controller;
- $this->panelController = $panelController;
- }
-
- //$voices: comma-separated list of links you want to print
- public function render($linksList)
- {
- $linksArray = explode(',',$linksList);
- $menu = null;
- foreach ($linksArray as $linkName)
- {
- //check that the voice exists
- if (array_key_exists($linkName,$this->links))
- {
- //check that the text and the ure are defined
- if (isset($this->links[$linkName]['text']) and isset($this->links[$linkName]['url']))
- {
- $title = isset($this->links[$linkName]['title']) ? "title='".$this->links[$linkName]['title']."'" : null;
- $class = isset($this->links[$linkName]['class']) ? "class='".$this->links[$linkName]['class']."'" : null;
- $icon = isset($this->links[$linkName]['icon']) ? "<img class='top_menu_icon' src='".$this->links[$linkName]['icon']."'> " : null;
-
- //choose the controller (current or panel)
- $controller = (strcmp($linkName,'panel') === 0) ? $this->panelController.'/' : $this->controller.'/';
- $viewStatus = (strcmp($linkName,'panel') === 0) ? null : $this->viewStatus;
-
- $href = Url::getRoot($controller.$this->links[$linkName]['url'].$viewStatus);
- $text = $this->links[$linkName]['text'];
- $menu .= "<div $class>$icon <a $title href='$href'>$text</a></div>\n";
- }
- }
- }
- return $menu;
- }
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/Pages.php b/h-source/Library/Helper/Pages.php
deleted file mode 100755
index 64e2649..0000000
--- a/h-source/Library/Helper/Pages.php
+++ /dev/null
@@ -1,132 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//Helper class to create the HTML of the page list
-class Helper_Pages extends Helper_Html
-{
-
- protected $_urlViewAction; //url of the current page
- protected $_currentPage; //number of the page
- protected $_numbOfPages; //number of pages
- protected $_variableArg = ''; //value of the $viewArgs key that has to be modified
-
- public $previousString = null; //string of the link to the previous page
- public $nextString = null; //string of the link to the next page
-
- //instance of Lang_{language}_Generic
- public $strings = null;
-
- public function __construct()
- {
- //get the generic language class
- $this->strings = Factory_Strings::generic(Params::$language);
- }
-
- public function build($urlViewAction = '' , $variableArg = 'page', $previousString = 'previous', $nextString = 'next')
- {
- $this->_variableArg = $variableArg;
- $this->_urlViewAction =$urlViewAction; //url of the controller and (/) main action
- $this->previousString = $this->strings->gtext($previousString);
- $this->nextString = $this->strings->gtext($nextString);
- }
-
- //return the number of pages
- public function getNumbOfPages()
- {
- return $this->_numbOfPages;
- }
-
- //get the limit of the select query clause
- public function getLimit($currentPage,$recordNumber,$recordPerPage)
- {
- $this->_currentPage = $currentPage;
- $this->_numbOfPages=(($recordNumber%$recordPerPage)===0) ? (int) ($recordNumber/$recordPerPage) : ((int) ($recordNumber/$recordPerPage))+1;
- $start=(($currentPage-1)*$recordPerPage);
- return "$start,$recordPerPage";
- }
-
- //return the page list string
- public function render($pageNumber,$numberOfPages)
- {
- $pageList = null;
- $pageList .= $this->pageLink($this->_currentPage-1,$this->previousString);
- $pageList .= $this->recursiveLink($pageNumber,$numberOfPages);
- $pageList .= $this->pageLink($this->_currentPage+1,$this->nextString);
- return $pageList;
- }
-
- //recorsive function in order to write the page list
- public function recursiveLink($pageNumber,$numberOfPages)
- {
-
- if ($numberOfPages === 0) return null;
-
- if ($numberOfPages === 1) {
- return $this->pageLink($pageNumber);
- } else {
- return $this->pageLink($pageNumber) . $this->recursiveLink($pageNumber+1,$numberOfPages-1);
- }
- }
-
- public function pageLink($pageNumber, $string = null) {
- if ($pageNumber > 0 and $pageNumber <= $this->_numbOfPages) {
- return $this->html($pageNumber,$string);
- } else {
- return null;
- }
- }
-
- //return the html link
- public function html($pageNumber,$string = null) {
- if (isset($string)) {
- $strNumber = $string;
- $strClass = "class='itemListPage'";
- } else {
- if ($pageNumber === $this->_currentPage)
- {
- $strNumber = $pageNumber;
- $strClass = "class='currentPage'";
- }
- else
- {
- $strNumber = $pageNumber;
- $strClass = "class='itemListPage'";
- }
- }
- $this->viewArgs[$this->_variableArg] = $pageNumber;
- $viewStatus = Url::createUrl(array_values($this->viewArgs));
- $href= Url::getRoot(null) . $this->_urlViewAction .$viewStatus;
- return $this->getATag($href,$strNumber,$strClass);
- }
-
- //get the HTMl of the tag
- //$href: href of the link
- //$text: the text of the link
- //$strClass: the class of the link
- public function getATag($href,$text,$strClass)
- {
- return "<a $strClass href='$href'>$text</a>";
- }
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/Popup.php b/h-source/Library/Helper/Popup.php
deleted file mode 100755
index 18bb00d..0000000
--- a/h-source/Library/Helper/Popup.php
+++ /dev/null
@@ -1,142 +0,0 @@
-<?php
-
-// EasyGiant is a PHP framework for creating and managing dynamic content
-//
-// Copyright (C) 2009 - 2011 Antonio Gallo
-// See COPYRIGHT.txt and LICENSE.txt.
-//
-// This file is part of EasyGiant
-//
-// EasyGiant is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EasyGiant is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EasyGiant. If not, see <http://www.gnu.org/licenses/>.
-
-if (!defined('EG')) die('Direct access not allowed!');
-
-//class to create the popup menu
-class Helper_Popup extends Helper_Html {
-
- 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;
- }
- }
-
- //create the HTML of the popup
- public function render() {
- $returnString = null;
- 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 .= "<ul onMouseOver='DisplayTag(this,\"block\");' onMouseOut='DisplayTag(this,\"none\");' id='menuBlock'><li class='innerItem'>".$popup->name."<ul class='innerList'>\n";
- for ($i = 0; $i < count($popup->itemsValue); $i++)
- {
- $this->viewArgs[$field] = $popup->itemsValue[$i];
- $viewStatus = Url::createUrl(array_values($this->viewArgs));
- $returnString .= "<li><a href='".Url::getRoot($this->url).$viewStatus."'>".$popup->itemsName[$i]."</a></li>\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(array_values($this->viewArgs));
- $returnString .= "<li><a href='".Url::getRoot($this->url).$viewStatus."'>".$this->allString."</a></li>\n";
- $returnString .= "</ul>\n</li>\n</ul>\n";
- $this->viewArgs[$field] = $tempArg;
- }
- if ($this->printLegend)
- {
- $returnString .= "<div class='popup_legend'>\n";
- foreach ($this->popupArray as $field => $popup)
- {
- $returnString .= "<div class='popup_legend_item'>".$this->legend[$field]."</div>";
- }
- $returnString .= "</div>\n";
- }
- if (count($this->popupArray)>0) {
- $returnString .= "<script type=\"text/javascript\" src=\"http://".DOMAIN_NAME."/Public/Js/DisplayTag.js\"></script>\n";
- }
- }
- return $returnString;
- }
-
-} \ No newline at end of file
diff --git a/h-source/Library/Helper/index.html b/h-source/Library/Helper/index.html
deleted file mode 100644
index 8d1c8b6..0000000
--- a/h-source/Library/Helper/index.html
+++ /dev/null
@@ -1 +0,0 @@
-