From 03497b90478bc0f7aca21351ea4e20a816c6fca2 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 28 Apr 2018 15:39:36 +0200 Subject: [PATCH] Action_Code : add validate, cancel and modify icon --- include/lib/icon_action.class.php | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/include/lib/icon_action.class.php b/include/lib/icon_action.class.php index 68fec5ed7..ad9a30bb9 100644 --- a/include/lib/icon_action.class.php +++ b/include/lib/icon_action.class.php @@ -193,4 +193,40 @@ class Icon_Action $r=''; return $r; } + /** + * Display the icon to modify a idem + * @param type $p_id + * @param type $p_javascript + * @return string + */ + static function modify($p_id,$p_javascript) + { + $r=''; + + return $r; + } + /** + * Display the icon to modify a idem + * @param type $p_id + * @param type $p_javascript + * @return string + */ + static function validate($p_id,$p_javascript) + { + $r=''; + + return $r; + } + /** + * Display the icon to modify a idem + * @param type $p_id + * @param type $p_javascript + * @return string + */ + static function cancel($p_id,$p_javascript) + { + $r=''; + + return $r; + } }