summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 90e195c)
raw | patch | inline | side by side (parent: 90e195c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 8 Apr 2010 12:57:04 +0000 (12:57 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 8 Apr 2010 12:57:04 +0000 (12:57 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17553 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/fai/admin/fai/class_faiPackage.inc | patch | blob | history |
diff --git a/gosa-plugins/fai/admin/fai/class_faiPackage.inc b/gosa-plugins/fai/admin/fai/class_faiPackage.inc
index 71b9770b6e344a0ff339cd68ae152d52fa470578..2c2ac12cc5c5992ed1c670c9444c18d54bb49174 100644 (file)
/* Generate package list */
$this->list= $this->genPkgs(TRUE);
+
+ // Prepare lists
+ $this->packageList = new sortableListing();
+ $this->packageList->setDeleteable(false);
+ $this->packageList->setEditable(false);
+ $this->packageList->setWidth("100%");
+ $this->packageList->setHeight("200px");
+ $this->packageList->setColspecs(array('20px','*','*','100px','60px'));
+ $this->packageList->setHeader(array(_("Status"),_("Name"),_("Description"),_("Version")));
+ $this->packageList->setDefaultSortColumn(1);
}
* Display UI / HTML / smarty
******/
- /* Create divlist to display a list of all currently used packages
+ /* Create list to display a list of all currently used packages
*/
- $divlist = new divSelectBox("faiPackages");
-
- ksort($this->usedPackages);
+ $data = $lData = array();
if(is_array($this->usedPackages)){
- foreach($this->usedPackages as $usedName => $name){
-
- $actions = "";
+ foreach($this->usedPackages as $usedName => $name){
- /* Append message if package is configured */
- $configured = image('images/empty.png');
- if(isset($this->ConfiguredPackages[$usedName])){
- $configured = image('plugins/fai/images/package_configure.png','',_("Configured"));
- }
+ /* Append message if package is configured */
+ $configured = image('images/empty.png');
+ if(isset($this->ConfiguredPackages[$usedName])){
+ $configured = image('plugins/fai/images/package_configure.png','',_("Configured"));
+ }
- /* Adapt used name if we're marked for removal */
- $removal = image('images/empty.png');
- if (preg_match('/\-$/', $name)){
- $removal = image('plugins/fai/images/removal_mark.png','',_("Package marked for removal"));
- }
+ /* Adapt used name if we're marked for removal */
+ $removal = image('images/empty.png');
+ if (preg_match('/\-$/', $name)){
+ $removal = image('plugins/fai/images/removal_mark.png','',_("Package marked for removal"));
+ }
- /* Get Version */
- $version = " ";
- if(isset($this->list[$usedName]['VERSION'])){
- $version = $this->list[$usedName]['VERSION'];
- }
-
- /* Get description */
- $description = " ";
- if(isset($this->list[$usedName]['DESCRIPTION'])){
- $description = base64_decode($this->list[$usedName]['DESCRIPTION']);
- }
-
- if(!preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIpackage")){
- $actions.= image('plugins/fai/images/removal_mark.png',
- 'removal_package_'.postEncode($usedName),
- _("Mark package for removal"));
- }
+ /* Get Version */
+ $version = "";
+ if(isset($this->list[$usedName]['VERSION'])){
+ $version = $this->list[$usedName]['VERSION'];
+ }
- if(isset($this->list[$usedName]['TEMPLATE']) &&
- !preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIdebconfInfo")){
- $actions.= image('plugins/fai/images/package_configure.png',
- 'configure_package_'.postEncode($usedName),
- _("Configure this package"));
- }
- if(!preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIpackage")){
- $actions.= image('images/lists/trash.png',
- 'remove_package_'.postEncode($usedName),
- _("Remove this package"));
- }
+ /* Get description */
+ $description = "";
+ if(isset($this->list[$usedName]['DESCRIPTION'])){
+ $description = base64_decode($this->list[$usedName]['DESCRIPTION']);
+ }
- $field1 = array("string" => $configured." ".$removal,"attach" => "style='width:40px;'");
- $field2 = array("string" => $usedName ,"attach" => "style='width:200px;'");
- $field3 = array("string" => $version);
- $field4 = array("string" => htmlentities($description));
- $field5 = array("string" => $actions ,"attach" => "style='width:60px; border-right:0px;'");
- $divlist->AddEntry(array($field1,$field2,$field3,$field4,$field5));
- }
+ $actions= image('plugins/fai/images/removal_mark.png',
+ 'removal_package_'.postEncode($usedName),
+ _("Mark package for removal"));
+
+ if(isset($this->list[$usedName]['TEMPLATE']) &&
+ !preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIdebconfInfo")){
+ $actions.= image('plugins/fai/images/package_configure.png',
+ 'configure_package_'.postEncode($usedName),
+ _("Configure this package"));
+ }
+ if(!preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIpackage")){
+ $actions.= image('images/lists/trash.png',
+ 'remove_package_'.postEncode($usedName),
+ _("Remove this package"));
+ }
+ $data[$usedName] = $usedName;
+ $lData[$usedName] = array('data'=>
+ array(
+ $configured." ".$removal,
+ $usedName ,$version,htmlentities($description), $actions));
+ }
}
+ $this->packageList->setAcl($this->getacl("FAIpackage",preg_match('/^freeze/', $this->FAIstate)));
+ $this->packageList->setListData($data,$lData);
+ $this->packageList->update();
/* Assign variables */
foreach($this->attributes as $attrs){
}
$smarty->assign("freeze", preg_match("/freeze/",$this->FAIstate));
- $smarty->assign("divlist",$divlist->DrawList());
+ $smarty->assign("divlist",$this->packageList->render());
$smarty->assign("release" ,$this->FAIdebianRelease);
$smarty->assign("sections",$this->sections);
$smarty->assign("section" ,$strsec);