pkg.php 19.5 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
<?php
/* $Id$ */
/*
    pkg.php
    Copyright (C) 2004-2012 Scott Ullrich <sullrich@gmail.com>
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
/*
	pfSense_MODULE:	pkgs
*/

##|+PRIV
##|*IDENT=page-package-settings
##|*NAME=Package: Settings page
##|*DESCR=Allow access to the 'Package: Settings' page.
##|*MATCH=pkg.php*
##|-PRIV

require_once("guiconfig.inc");
require_once("pkg-utils.inc");

function gentitle_pkg($pgname) {
	global $config;
	return $config['system']['hostname'] . "." . $config['system']['domain'] . " - " . $pgname;
}

function domTT_title($title_msg){
	print "onmouseout=\"this.style.color = ''; domTT_mouseout(this, event);\" onmouseover=\"domTT_activate(this, event, 'content', '".gettext($title_msg)."', 'trail', true, 'delay', 0, 'fade', 'both', 'fadeMax', 93, 'styleClass', 'niceTitle');\"";
}

$xml = $_REQUEST['xml'];

if($xml == "") {
	print_info_box_np(gettext("ERROR: No package defined."));
	exit;
} else {
	if(file_exists("/usr/local/pkg/" . $xml))
		$pkg = parse_xml_config_pkg("/usr/local/pkg/" . $xml, "packagegui");
	else {
		echo "File not found " . htmlspecialchars($xml);
		exit;
	}
}

if($pkg['donotsave'] <> "") {
	header("Location: pkg_edit.php?xml=" . $xml);
	exit;
}

if ($pkg['include_file'] != "") {
	require_once($pkg['include_file']);
}

$package_name = $pkg['menu'][0]['name'];
$section      = $pkg['menu'][0]['section'];
$config_path  = $pkg['configpath'];
$title	      = $pkg['title'];

80
if($_REQUEST['startdisplayingat'])
Ad Schellevis's avatar
Ad Schellevis committed
81 82
	$startdisplayingat = $_REQUEST['startdisplayingat'];

83
if($_REQUEST['display_maximum_rows'])
Ad Schellevis's avatar
Ad Schellevis committed
84 85 86 87 88 89
	if($_REQUEST['display_maximum_rows'])
		$display_maximum_rows = $_REQUEST['display_maximum_rows'];

$evaledvar = $config['installedpackages'][xml_safe_fieldname($pkg['name'])]['config'];

if ($_GET['act'] == "update") {
90

Ad Schellevis's avatar
Ad Schellevis committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		if(is_array($config['installedpackages'][$pkg['name']]) && $pkg['name'] != "" && $_REQUEST['ids'] !=""){
			#get current values
			$current_values=$config['installedpackages'][$pkg['name']]['config'];
			#get updated ids
			parse_str($_REQUEST['ids'], $update_list);
			#sort ids to know what to change
			#usefull to do not loose data when using sorting and paging
			$sort_list=$update_list['ids'];
			sort($sort_list);
			#apply updates
			foreach($update_list['ids'] as $key=> $value){
				$config['installedpackages'][$pkg['name']]['config'][$sort_list[$key]]=$current_values[$update_list['ids'][$key]];
				}
			#save current config
			write_config();
			#sync package
			eval ("{$pkg['custom_php_resync_config_command']}");
			}
		#function called via jquery, no need to continue after save changes.
		exit;
}
if ($_GET['act'] == "del") {
		// loop through our fieldnames and automatically setup the fieldnames
		// in the environment.  ie: a fieldname of username with a value of
		// testuser would automatically eval $username = "testuser";
		foreach ($evaledvar as $ip) {
			if($pkg['adddeleteeditpagefields']['columnitem'])
			  foreach ($pkg['adddeleteeditpagefields']['columnitem'] as $column) {
				  ${xml_safe_fieldname($column['fielddescr'])} = $ip[xml_safe_fieldname($column['fieldname'])];
			  }
		}

		$a_pkg = &$config['installedpackages'][xml_safe_fieldname($pkg['name'])]['config'];

		if ($a_pkg[$_GET['id']]) {
			unset($a_pkg[$_GET['id']]);
			write_config();
			if($pkg['custom_delete_php_command'] <> "") {
			    if($pkg['custom_php_command_before_form'] <> "")
					eval($pkg['custom_php_command_before_form']);
131
				eval($pkg['custom_delete_php_command']);
Ad Schellevis's avatar
Ad Schellevis committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
			}
			header("Location:  pkg.php?xml=" . $xml);
			exit;
	    }
}

ob_start();

$iflist = get_configured_interface_with_descr(false, true);
$evaledvar = $config['installedpackages'][xml_safe_fieldname($pkg['name'])]['config'];

if($pkg['custom_php_global_functions'] <> "")
	eval($pkg['custom_php_global_functions']);

if($pkg['custom_php_command_before_form'] <> "")
	eval($pkg['custom_php_command_before_form']);

$pgtitle = array($title);
include("head.inc");

?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php include("fbegin.inc"); ?>
<script type="text/javascript" src="javascript/domTT/domLib.js"></script>
<script type="text/javascript" src="javascript/domTT/domTT.js"></script>
<script type="text/javascript" src="javascript/domTT/behaviour.js"></script>
<script type="text/javascript" src="javascript/domTT/fadomatic.js"></script>
<script type="text/javascript">
//<![CDATA[
	function setFilter(filtertext) {
		jQuery('#pkg_filter').val(filtertext);
		document.pkgform.submit();
    }

	<?php
		if($pkg['adddeleteeditpagefields']['movable']){
	?>
			jQuery(document).ready(function(){
				jQuery('#mainarea table tbody').sortable({
					items: 'tr.sortable',
					cursor: 'move',
					distance: 10,
					opacity: 0.8,
176 177 178
					helper: function(e,ui){
						ui.children().each(function(){
							jQuery(this).width(jQuery(this).width());
Ad Schellevis's avatar
Ad Schellevis committed
179
						});
180
					return ui;
Ad Schellevis's avatar
Ad Schellevis committed
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
					},
				});
			});
			function save_changes_to_xml(xml) {
					var ids=jQuery('#mainarea table tbody').sortable('serialize',{key:"ids[]"});
					var strloading="<img src='/themes/<?= $g['theme']; ?>/images/misc/loader.gif' alt='loader' /> " +  "<?=gettext('Saving changes...');?>";
					if(confirm("<?=gettext("Do you really want to save changes?");?>")){
						jQuery.ajax({
							type: 'get',
							cache: false,
							url: "<?=$_SERVER['SCRIPT_NAME'];?>",
							data: {xml:'<?=$xml?>', act:'update', ids: ids},
							beforeSend: function(){
						        jQuery('#savemsg').empty().html(strloading);
							},
							error: function(data){
197 198
							jQuery('#savemsg').empty().html('Error:' + data);
							 },
Ad Schellevis's avatar
Ad Schellevis committed
199
							success: function(data){
200 201
							jQuery('#savemsg').empty().html(data);
							 }
Ad Schellevis's avatar
Ad Schellevis committed
202 203 204
						});
					}
			}
205
	<?php
Ad Schellevis's avatar
Ad Schellevis committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
		}
	?>
//]]>
</script>
<form action="pkg.php" name="pkgform" method="get">
<input type='hidden' name='xml' value='<?=$_REQUEST['xml']?>' />
<?php if($_GET['savemsg'] <> "") $savemsg = htmlspecialchars($_GET['savemsg']); ?>
<div id="savemsg"></div>
<?php if ($savemsg) print_info_box($savemsg); ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="package settings">
<?php
if ($pkg['tabs'] <> "") {
    $tab_array = array();
    foreach($pkg['tabs']['tab'] as $tab) {
        if($tab['tab_level'])
            $tab_level = $tab['tab_level'];
        else
            $tab_level = 1;
        if(isset($tab['active'])) {
            $active = true;
        } else {
            $active = false;
        }
		if(isset($tab['no_drop_down']))
			$no_drop_down = true;
        $urltmp = "";
        if($tab['url'] <> "") $urltmp = $tab['url'];
        if($tab['xml'] <> "") $urltmp = "pkg_edit.php?xml=" . $tab['xml'];

        $addresswithport = getenv("HTTP_HOST");
        $colonpos = strpos($addresswithport, ":");
        if ($colonpos !== False) {
            //my url is actually just the IP address of the pfsense box
            $myurl = substr($addresswithport, 0, $colonpos);
        } else {
            $myurl = $addresswithport;
        }
        // eval url so that above $myurl item can be processed if need be.
        $url = str_replace('$myurl', $myurl, $urltmp);

        $tab_array[$tab_level][] = array(
                        $tab['text'],
                        $active,
                        $url
                    );
    }

    ksort($tab_array);
    foreach($tab_array as $tab) {
		echo '<tr><td>';
		display_top_tabs($tab, $no_drop_down);
        echo '</td></tr>';
    }
}
?>
<tr><td><div id="mainarea"><table width="100%" border="0" cellpadding="0" cellspacing="0" summary="main area">
	<tr>
		<td class="tabcont">
			<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="tabs">
<?php
266
				/* Handle filtering bar A-Z */
Ad Schellevis's avatar
Ad Schellevis committed
267 268
				$include_filtering_inputbox = false;
				$colspan = 0;
269
				if($pkg['adddeleteeditpagefields']['columnitem'] <> "")
Ad Schellevis's avatar
Ad Schellevis committed
270 271 272 273 274 275
					foreach ($pkg['adddeleteeditpagefields']['columnitem'] as $column)
						$colspan++;
				if($pkg['fields']['field']) {
					// First find the sorting type field if it exists
					foreach($pkg['fields']['field'] as $field) {
						if($field['type'] == "sorting") {
276
							if(isset($field['include_filtering_inputbox']))
Ad Schellevis's avatar
Ad Schellevis committed
277
								$include_filtering_inputbox = true;
278 279
							if($display_maximum_rows < 1)
								if($field['display_maximum_rows'])
Ad Schellevis's avatar
Ad Schellevis committed
280 281 282 283 284
									$display_maximum_rows = $field['display_maximum_rows'];
							echo "<tr><td class='listhdrr' colspan='$colspan' align='center'>";
							echo "Filter by: ";
							$isfirst = true;
							for($char = 65; $char < 91; $char++) {
285
								if(!$isfirst)
Ad Schellevis's avatar
Ad Schellevis committed
286 287 288 289 290 291 292 293 294
									echo " | ";
								echo "<a href=\"#\" onclick=\"setFilter('" . chr($char) . "');\">" . chr($char) . "</a>";
								$isfirst = false;
							}
							echo "</td></tr>";
							echo "<tr><td class='listhdrr' colspan='$colspan' align='center'>";
							if($field['sortablefields']) {
								echo "Filter field: <select name='pkg_filter_type'>";
								foreach($field['sortablefields']['item'] as $si) {
295
									if($si['name'] == $_REQUEST['pkg_filter_type'])
Ad Schellevis's avatar
Ad Schellevis committed
296
										$SELECTED = "selected=\"selected\"";
297
									else
Ad Schellevis's avatar
Ad Schellevis committed
298 299 300 301 302
										$SELECTED = "";
									echo "<option value='{$si['name']}' {$SELECTED}>{$si['name']}</option>";
								}
								echo "</select>";
							}
303
							if($include_filtering_inputbox)
Ad Schellevis's avatar
Ad Schellevis committed
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
								echo "&nbsp;&nbsp;Filter text: <input id='pkg_filter' name='pkg_filter' value='" . $_REQUEST['pkg_filter'] . "' /> <input type='submit' value='Filter' />";
							echo "</td></tr><tr><td><font size='-3'>&nbsp;</font></td></tr>";
						}
					}
				}
?>
				<tr>
<?php
				if($display_maximum_rows) {
					$totalpages = ceil(round((count($evaledvar) / $display_maximum_rows),9));
					$page = 1;
					$tmpcount = 0;
					$tmppp = 0;
					if(is_array($evaledvar)) {
						foreach ($evaledvar as $ipa) {
							if($tmpcount == $display_maximum_rows) {
								$page++;
								$tmpcount = 0;
							}
							if($tmppp == $startdisplayingat)
324
								break;
Ad Schellevis's avatar
Ad Schellevis committed
325 326 327 328 329 330 331 332 333 334 335 336
							$tmpcount++;
							$tmppp++;
						}
					}
					echo "<tr><td colspan='" . count($pkg['adddeleteeditpagefields']['columnitem']) . "'>";
					echo "<table width='100%' summary=''>";
					echo "<tr>";
					echo "<td align='left'>Displaying page $page of $totalpages</b></td>";
					echo "<td align='right'>Rows per page: <select onchange='document.pkgform.submit();' name='display_maximum_rows'>";
					for($x=0; $x<250; $x++) {
						if($x == $display_maximum_rows)
							$SELECTED = "selected=\"selected\"";
337
						else
Ad Schellevis's avatar
Ad Schellevis committed
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
							$SELECTED = "";
						echo "<option value='$x' $SELECTED>$x</option>\n";
						$x=$x+4;
					}
					echo "</select></td></tr>";
					echo "</table>";
					echo "</td></tr>";
				}
				$cols = 0;
				if($pkg['adddeleteeditpagefields']['columnitem'] <> "") {
				    foreach ($pkg['adddeleteeditpagefields']['columnitem'] as $column) {
						echo "<td class=\"listhdrr\">" . $column['fielddescr'] . "</td>";
						$cols++;
				    }
				}
				echo "</tr>";
				$i=0;
				$pagination_startingrow=0;
				$pagination_counter=0;
			    if($evaledvar)
			    foreach ($evaledvar as $ip) {
				if($startdisplayingat) {
					if($i < $startdisplayingat) {
						$i++;
						continue;
					}
				}
				if($_REQUEST['pkg_filter']) {
					// Handle filterered items
					if($pkg['fields']['field'] && !$filter_regex) {
						// First find the sorting type field if it exists
						foreach($pkg['fields']['field'] as $field) {
							if($field['type'] == "sorting") {
								if($field['sortablefields']['item']) {
									foreach($field['sortablefields']['item'] as $sf) {
										if($sf['name'] == $_REQUEST['pkg_filter_type']) {
											$filter_fieldname = $sf['fieldname'];
											#Use a default regex on sortable fields when none is declared
											if($sf['regex'])
												$filter_regex = str_replace("%FILTERTEXT%", $_REQUEST['pkg_filter'], trim($sf['regex']));
											else
												$filter_regex = "/{$_REQUEST['pkg_filter']}/i";
										}
									}
								}
							}
						}
					}
					// Do we have something to filter on?
					unset($filter_matches);
					if($pkg['adddeleteeditpagefields']['columnitem'] <> "") {
						foreach ($pkg['adddeleteeditpagefields']['columnitem'] as $column) {
							$fieldname = $ip[xml_safe_fieldname($column['fieldname'])];
							if($column['fieldname'] == $filter_fieldname) {
								if($filter_regex) {
									//echo "$filter_regex - $fieldname<p/>";
									preg_match($filter_regex, $fieldname, $filter_matches);
									break;
								}
							}
						}
					}
					if(!$filter_matches) {
						$i++;
						continue;
					}
				}
				if($pkg['adddeleteeditpagefields']['movable'])
					echo "<tr valign=\"top\" class=\"sortable\" id=\"id_{$i}\">\n";
				else
					echo "<tr valign=\"top\">\n";
				if($pkg['adddeleteeditpagefields']['columnitem'] <> "")
					foreach ($pkg['adddeleteeditpagefields']['columnitem'] as $column) {
						if ($column['fieldname'] == "description")
							$class = "listbg";
						else
							$class = "listlr";
?>
						<td class="<?=$class;?>" ondblclick="document.location='pkg_edit.php?xml=<?=$xml?>&amp;act=edit&amp;id=<?=$i;?>';">
							<?php
								$fieldname = $ip[xml_safe_fieldname($column['fieldname'])];
								#Check if columnitem has a type field declared
							    if($column['type'] == "checkbox") {
									if($fieldname == "") {
422
									echo gettext("No");
Ad Schellevis's avatar
Ad Schellevis committed
423
									} else {
424
									echo gettext("Yes");
Ad Schellevis's avatar
Ad Schellevis committed
425 426 427 428
									}
							    } else if ($column['type'] == "interface") {
									echo  $column['prefix'] . $iflist[$fieldname] . $column['suffix'];
							    } else {
429 430
								#Check if columnitem has an encoding field declared
								if ($column['encoding'] == "base64")
Ad Schellevis's avatar
Ad Schellevis committed
431 432 433
										echo  $column['prefix'] . base64_decode($fieldname) . $column['suffix'];
									#Check if there is a custom info to show when $fieldname is not empty
									else if($column['listmodeon'] && $fieldname != "")
434 435 436 437
										echo $column['prefix'] . gettext($column['listmodeon']). $column['suffix'];
									#Check if there is a custom info to show when $fieldname is empty
									else if($column['listmodeoff'] && $fieldname == "")
									echo $column['prefix'] .gettext($column['listmodeoff']). $column['suffix'];
Ad Schellevis's avatar
Ad Schellevis committed
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
									else
										echo $column['prefix'] . $fieldname ." ". $column['suffix'];
							    }
							?>
						</td>
<?php
					}
?>
				<td valign="middle" class="list nowrap">
				<table border="0" cellspacing="0" cellpadding="1" summary="icons">
				<tr>
				<?php
				#Show custom description to edit button if defined
				$edit_msg=($pkg['adddeleteeditpagefields']['edittext']?$pkg['adddeleteeditpagefields']['edittext']:"Edit this item");?>
				<td valign="middle"><a href="pkg_edit.php?xml=<?=$xml?>&amp;act=edit&amp;id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" <?=domTT_title($edit_msg)?> alt="edit" /></a></td>
				<?php
				#Show custom description to delete button if defined
				$delete_msg=($pkg['adddeleteeditpagefields']['deletetext']?$pkg['adddeleteeditpagefields']['deletetext']:"Delete this item");?>
				<td valign="middle"><a href="pkg.php?xml=<?=$xml?>&amp;act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this item?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" <?=domTT_title($delete_msg)?> alt="delete" /></a></td>
				</tr>
				</table>
				</td>
<?php
				echo "</tr>\n";
				// Handle pagination and display_maximum_rows
				if($display_maximum_rows) {
464
					if($pagination_counter == ($display_maximum_rows-1) or
Ad Schellevis's avatar
Ad Schellevis committed
465 466 467 468 469 470 471 472 473 474
					   $i ==  (count($evaledvar)-1)) {
						$colcount = count($pkg['adddeleteeditpagefields']['columnitem']);
						$final_footer = "";
						$final_footer .= "<tr><td colspan='$colcount'>";
						$final_footer .=  "<table width='100%' summary=''><tr>";
						$final_footer .=  "<td align='left'>";
						$startingat = $startdisplayingat - $display_maximum_rows;
						if($startingat > -1) {
							$final_footer .=  "<a href='pkg.php?xml=" . $_REQUEST['xml'] . "&amp;startdisplayingat={$startingat}&amp;display_maximum_rows={$display_maximum_rows}'>";
						} else {
475
							if($startingnat > 1)
Ad Schellevis's avatar
Ad Schellevis committed
476 477 478
								$final_footer .=  "<a href='pkg.php?xml=" . $_REQUEST['xml'] . "&amp;startdisplayingat=0&amp;display_maximum_rows={$display_maximum_rows}'>";
						}
						$final_footer .=  "<font size='2'><< Previous page</font></a>";
479
						if($tmppp + $display_maximum_rows > count($evaledvar))
Ad Schellevis's avatar
Ad Schellevis committed
480
							$endingrecord = count($evaledvar);
481
						else
Ad Schellevis's avatar
Ad Schellevis committed
482 483 484 485 486 487 488
							$endingrecord = $tmppp + $display_maximum_rows;
						$final_footer .=  "</td><td align='center'>";
						$tmppp++;
						$final_footer .=  "<font size='2'>Displaying {$tmppp} - {$endingrecord} / " . count($evaledvar) . " records";
						$final_footer .=  "</font></td><td align='right'>&nbsp;";
						if(($i+1) < count($evaledvar))
							$final_footer .=  "<a href='pkg.php?xml=" . $_REQUEST['xml'] . "&amp;startdisplayingat=" . ($startdisplayingat + $display_maximum_rows) . "&amp;display_maximum_rows={$display_maximum_rows}'>";
489
						$final_footer .=  "<font size='2'>Next page >></font></a>";
Ad Schellevis's avatar
Ad Schellevis committed
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
						$final_footer .=  "</td></tr></table></td></tr>";
						$i = count($evaledvar);
						break;
					}
				}
				$i++;
				$pagination_counter++;
			    }
?>
				<tr>
					<td colspan="<?=$cols?>"></td>
					<td>
						<table border="0" cellspacing="0" cellpadding="1" summary="icons">
							<tr>
								<?php
								#Show custom description to add button if defined
								$add_msg=($pkg['adddeleteeditpagefields']['addtext']?$pkg['adddeleteeditpagefields']['addtext']:"Add a new item");?>
								<td valign="middle"><a href="pkg_edit.php?xml=<?=$xml?>&amp;id=<?=$i?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" <?=domTT_title($add_msg)?> alt="add" /></a></td>
								<?php
								#Show description button and info if defined
								if($pkg['adddeleteeditpagefields']['description']){?>
								<td valign="middle"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_info_pkg.gif" width="17" height="17" border="0" <?=domTT_title($pkg['adddeleteeditpagefields']['description'])?> alt="info" /></td>
								<?php }?>
							</tr>
						</table>
					</td>
				</tr>
				<?=$final_footer?>
				<?php
				#Show save button only when movable is defined
				if($pkg['adddeleteeditpagefields']['movable']){?>
				<tr><td><input class="formbtn" type="button" value="Save" name="Submit" onclick="save_changes_to_xml('<?=$xml?>')" /></td></tr>
				<?php }?>
		</table>
	</td>
</tr>
</table>
</div></td></tr></table>

</form>
<?php include("fend.inc"); ?>

<?php
	echo "<!-- filter_fieldname: {$filter_fieldname} -->";
	echo "<!-- filter_regex: {$filter_regex} -->";
?>

</body>
</html>