0000599: Table action_gestion_related

0000595: Amélioration apparence listes des actions concernées
0000594: Regrouper toutes les actions concernée
0000589: Ajout de liens vers d'autres actions
This commit is contained in:
Dany De Bontridder 2012-06-02 09:42:31 +00:00
parent bf13768b51
commit 3fc1c47af4
8 changed files with 103 additions and 224 deletions

View file

@ -511,10 +511,10 @@ class HtmlInput
*@param $request name of the superglobal $_POST $_GET $_REQUEST(default)
*@return html string with the string data
*/
static function array_to_string($array,$global_array )
static function array_to_string($array,$global_array,$start="?" )
{
$r="?";
$r=$start;
if ( count($global_array )==0) return '';
$and="";
@ -557,9 +557,9 @@ class HtmlInput
*@see HtmlInput::request_to_string
*@return html string with the string data
*/
static function request_to_string($array)
static function request_to_string($array,$start="?")
{
$r=self::array_to_string($array,$_REQUEST );
$r=self::array_to_string($array,$_REQUEST,$start );
return $r;
}