summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 824dc67)
raw | patch | inline | side by side (parent: 824dc67)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 Oct 2005 05:00:05 +0000 (05:00 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 Oct 2005 05:00:05 +0000 (05:00 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1550 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/applications/class_applicationGeneric.inc | patch | blob | history | |
plugins/admin/applications/generic.tpl | patch | blob | history |
diff --git a/plugins/admin/applications/class_applicationGeneric.inc b/plugins/admin/applications/class_applicationGeneric.inc
index c4e8ea30057185cd9b8ce3b48184cc97aba2d6e1..1dc42b8902671d68d798d19f89e9c109e3bd35df 100644 (file)
var $gosaApplicationName= "";
var $gosaApplicationFlags= "";
var $gosaApplicationIcon= "";
+ var $gotoLogonScript ="";
var $iconData;
/* Headpage attributes */
/* attribute list for save action */
var $attributes= array("cn", "description", "gosaApplicationExecute", "gosaApplicationName",
- "gosaApplicationFlags");
+ "gosaApplicationFlags","gotoLogonScript");
var $objectclasses= array("top", "gosaApplication");
function application ($config, $dn= NULL)
}
}
+ 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.=" ";
+ }
+ if(!empty($Value)){
+ $str.= "# ".$Name."\t\t(e.g. ".$Value.")\n";
+ }else{
+ $str.= "# ".$Name."\n";
+ }
+ }
+ $str .= "#\n".
+ "# Don't remove the following tag, it is used for header update.\n".
+ "### END HEADER ###";
+
+ return($str);
+ }
+
function execute()
{
/* Do we represent a valid group? */
_("This 'dn' is no application.")."</b>";
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;
+ }
+
+ if((isset($_POST['upLoad']))&&(isset($_FILES['ScriptFile']))){
+ $str = file_get_contents($_FILES['ScriptFile']['tmp_name']);
+ $this->gotoLogonScript = $str;
+ }
+
/* Fill templating stuff */
$smarty= get_smarty();
$smarty->assign("cn", $this->cn);
$smarty->assign("$val", "");
}
}
+ $smarty->assign("gotoLogonScript",$this->gotoLogonScript);
$smarty->assign("base_select", $this->base);
$smarty->assign("gosaApplicationFlagsACL", chkacl($this->acl, "gosaApplicationFlags"));
index b93963892715a88a31986fd052e1f9c5d5860e4d..80294dfd0abc5379e2d1658485d94b2ef9fa5a12 100644 (file)
</tr>
</table>
+<p class="plugbottom" style="height:4px; margin-bottom:0px;"> </p>
+
+<table width="99%">
+ <tr>
+ <td>
+ <h2><img src="images/script.png" alt="{t}Script{/t}">{t}Script{/t}</h2>
+ <textarea name="gotoLogonScript" style='width:99%;height:220px;'>{$gotoLogonScript}</textarea>
+ <input type="file" name="ScriptFile" value="{t}Import{/t}">
+ <input type="submit" name="upLoad" value="{t}Upload{/t}">
+ <input type="submit" name="ScriptTemplate" value="{t}Template{/t}">
+ </td>
+ </tr>
+</table>
+
<div style="height:20px;"></div>
<!-- Place cursor -->