<?php
/*
Copyright (C) 2001-2004 ZZOSS GbR, http://www.zzoss.com
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
@version $Id: footer.php,v 1.11 2004/04/06 19:51:11 ordnas Exp $
@copyright Copyright © 2001-2004 ZZ/OSS GbR, http://www.zzoss.com
@license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License
*/
?>
</div>
<div class="buttons-bottom">
<span class="status">
<?php
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'){
?>
<img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/encrypted.gif" border="0" alt="Encrypted" title="Encrypted"/>Encrypted
<?php
} else {
?>
<img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/decrypted.gif" border="0" alt="Decrypted" title="Decrypted"/>Decrypted
<?php
}
if(is_object($zi_auth)){
?>
<img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/kuser.gif" alt="Logged In User" title="Logged In User">
<?php echo $zi_auth->getUsername();
}
?>
</span>
<?php
$fields = array('id', 'distribution', 'application', 'package', 'mode', 'update_old', 'type', 'nav', 'widget_type');
if(!$zi_hide['profile']){
$fields[] = 'profile';
}
echo zi_form_hidden_fields($fields);
if(isset($zi_buttons['back'])){
?><input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/back.gif" name="ZI_BUTTON_BACK" value="< Back" tabindex="3" title="< Back"><input type="hidden" name="ZI_LOCATION_BACK" value="<?php echo $zi_buttons['back']; ?>"><?php
}
if(isset($zi_buttons['cancel'])){
?> <input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/stop.gif" name="ZI_BUTTON_CANCEL" value="Cancel" tabindex="4" title="X Cancel">
<input type="hidden" name="ZI_LOCATION_CANCEL" value="<?php echo $zi_buttons['cancel']; ?>"><?php
}
if(isset($zi_buttons['save'])){
?> <input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/filesave.gif" name="ZI_BUTTON_NEXT" value="Save" tabindex="2" title="Save">
<input type="hidden" name="ZI_LOCATION_NEXT" value="<?php echo $zi_buttons['save']; ?>"><?php
}
if(isset($zi_buttons['reload'])){
?> <input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/reload.gif" name="ZI_BUTTON_NEXT" value="Reload" tabindex="1" title="Reload">
<input type="hidden" name="ZI_LOCATION_NEXT" value="<?php echo $zi_buttons['reload']; ?>"><?php
}
if(isset($zi_buttons['next'])){
?> <input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/forward.gif" name="ZI_BUTTON_NEXT" value="Next >" tabindex="1" title="Next >">
<input type="hidden" name="ZI_LOCATION_NEXT" value="<?php echo $zi_buttons['next']; ?>"><?php
}
if(isset($zi_buttons['ok'])){
?> <input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/button_ok.gif" name="ZI_BUTTON_OK" value="OK" tabindex="1" title="OK">
<input type="hidden" name="ZI_LOCATION_OK" value="<?php echo $zi_buttons['ok']; ?>"><?php
}
?>
</div>
</div>
</div>
</div>
</form>
</body>
</html>
<?php
$response = ob_get_contents();
ob_end_clean();
echo $response;
?>