Code

Fixed attachment for printer
[gosa.git] / plugins / admin / applications / class_applicationGeneric.inc
index 1dc42b8902671d68d798d19f89e9c109e3bd35df..0918b0f031cf82a4d098f4af11b6e6eea0b153f1 100644 (file)
@@ -38,7 +38,8 @@ class application extends plugin
        if ($this->iconData == ""){
                $this->set_picture("");
        }
-       $_SESSION['picture']= $this->iconData;
+       $_SESSION['binary']= $this->iconData;
+       $_SESSION['binarytype']= "image/jpeg";
        $this->gosaApplicationIcon= $this->iconData;
 
        /* This is always an account */
@@ -56,46 +57,33 @@ class application extends plugin
        }
   }
 
-  function generateTempalte(){
-       $str =  "# This code is part of GOsa (https://gosa.gonicus.de)\n".
-                       "#\n".
-            "# This program is free software; you can redistribute it and/or modify\n".
-            "# it under the terms of the GNU General Public License as published by\n".
-            "# the Free Software Foundation; either version 2 of the License, or\n".
-            "# (at your option) any later version.\n".
-            "#\n".
-            "# This program is distributed in the hope that it will be useful,\n".
-            "# but WITHOUT ANY WARRANTY; without even the implied warranty of\n".
-            "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n".
-            "# GNU General Public License for more details.\n".
-            "#\n".
-            "# You should have received a copy of the GNU General Public License\n".
-            "# along with this program; if not, write to the Free Software\n".
-            "# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n".
-            "#\n";
-
-       $vars = ($this->attrs['gosaApplicationParameter']);
-       unset($vars['count']);
-
-
-       $str .="# This plugin handles these environment variables:\n";
-
-       foreach($vars as $var){
-               if(preg_match("/\:/",$var)){
-                       $stra   = split(":",$var);
-                       $Name   = $stra[0];
-                       $Value  = $stra[1];
-               }else{
-                       $Name   = $var;
-                       $Value  = "";
-               }
-               for($i = strlen($Name);$i < 25 ; $i++){
-                       $Name.=" ";
+
+  function generateTemplate(){
+       $str= "# This code is part of GOsa (https://gosa.gonicus.de)\n#\n";
+
+       $values = array();
+       $names  = array();
+       if($this->parent->by_object['applicationParameters']->is_account){
+               $names = $this->parent->by_object['applicationParameters']->option_name;
+               $values = $this->parent->by_object['applicationParameters']->option_value;
+       }
+
+       if (count($names)){
+               $str .="# This plugin handles these environment variables:\n";
+       } else {
+               $str .="# This plugin handles no environment variables.\n";
+       }
+
+       foreach($names as $index => $name){
+
+               // Fix length
+               for($i = strlen($name) ; $i < 30 ; $i++){
+                       $name= $name." ";
                }
-               if(!empty($Value)){
-                       $str.= "# ".$Name."\t\t(e.g. ".$Value.")\n";
+               if((isset($values[$index]))&&(!empty($values[$index]))){
+                       $str.= "# ".$name."\t(e.g. '".$values[$index]."')\n";
                }else{
-                       $str.= "# ".$Name."\n";
+                       $str.= "# ".$name."\t("._("no example").")\n";
                }
        }
        $str .= "#\n".
@@ -107,6 +95,11 @@ class application extends plugin
 
   function execute()
   {
+       /* Call parent execute */
+       plugin::execute();
+
+       $smarty= get_smarty();
+
        /* Do we represent a valid group? */
        if (!$this->is_account && $this->parent == NULL){
                 $display= "<img alt=\"\" src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
@@ -114,18 +107,8 @@ class application extends plugin
                 return ($display);
        }
 
-       if(isset($_POST['ScriptTemplate'])){
-               $head = $this->generateTempalte();
-               $scr  = $this->gotoLogonScript; 
-               
-               if(preg_match("/### END HEADER ###/",$scr)){
-                       $pos = strrpos($scr,"### END HEADER ###");
-                       $pos = $pos + strlen("### END HEADER ###");
-                       $scr=substr($scr,$pos,(strlen($scr)));
-               }
-
-               $this->gotoLogonScript = $head.$scr;
-       }
+       $head = $this->generateTemplate();
+       $this->gotoLogonScript= $this->generateTemplate().preg_replace('/.*### END HEADER ###/s', '', $this->gotoLogonScript);
        
        if((isset($_POST['upLoad']))&&(isset($_FILES['ScriptFile']))){
                $str = file_get_contents($_FILES['ScriptFile']['tmp_name']);
@@ -133,7 +116,6 @@ class application extends plugin
        }
  
        /* Fill templating stuff */
-       $smarty= get_smarty();
        $smarty->assign("cn", $this->cn);
        $smarty->assign("bases", $this->config->idepartments);
        if ($this->dn == "new"){
@@ -149,13 +131,14 @@ class application extends plugin
        $smarty->assign("rand", rand(0, 10000));
 
        /* Variables */
-       foreach(array("description", "gosaApplicationExecute", "gosaApplicationName") as $val){
+       foreach(array("description", "gosaApplicationExecute", "gosaApplicationName","cn") as $val){
                $smarty->assign($val, $this->$val);
                $smarty->assign($val."ACL", chkacl($this->acl, $val));
        }
 
        /* Checkboxes */
        foreach (array("G" => "exec_for_groupmembers", "O" => "overwrite_config",
+                       "L" => "place_on_kicker",
                        "D" => "place_on_desktop", "M" => "place_in_startmenu") as $key => $val){
                if (preg_match("/$key/", $this->gosaApplicationFlags)){
                        $smarty->assign("$val", "checked");
@@ -213,6 +196,9 @@ class application extends plugin
                if (isset($_POST['place_on_desktop']) && $_POST['place_on_desktop'] == 1){
                        $flag.= "D";
                }
+               if (isset($_POST['place_on_kicker']) && $_POST['place_on_kicker'] == 1){
+                       $flag.= "L";
+               }
                if (isset($_POST['place_in_startmenu']) && $_POST['place_in_startmenu'] == 1){
                        $flag.= "M";
                }
@@ -326,7 +312,7 @@ class application extends plugin
        /* Check for existing application */
        $ldap= $this->config->get_ldap_link();
        $ldap->cd($this->config->current["BASE"]);
-       $ldap->search("(&(objectClass=gosaApplication)(cn=$this->cn))");
+       $ldap->search("(&(objectClass=gosaApplication)(cn=$this->cn))",array("cn"));
        $ldap->fetch();
        if ($ldap->count() != 0 && $this->dn == "new"){
                $message[]= _("There's already an application with this 'Name'.");
@@ -370,7 +356,8 @@ class application extends plugin
        if (file_exists($filename)){
                $fd = fopen ($filename, "rb");
                $this->iconData= fread ($fd, filesize ($filename));
-               $_SESSION['picture']= $this->iconData;
+               $_SESSION['binary']= $this->iconData;
+               $_SESSION['binarytype']= "image/jpeg";
                $this->gosaApplicationIcon= $this->iconData;
 
                fclose ($fd);