/**
     * returns the HTML for a quality output select box
     *
     * @return string
     * @param string $name
     * @param string[optional] $sel
     */
    public static function qualitySelect($name = 'quality', $sel = 8)
    {
        return '<select name="' . $name . '" class="weSelect" size="1">
<option value="0"' . ($sel == 0 ? ' selected' : '') . '>0 - ' . g_l('weClass', '[quality_low]') . '</option>
<option value="1"' . ($sel == 1 ? ' selected' : '') . '>1</option>
<option value="2"' . ($sel == 2 ? ' selected' : '') . '>2</option>
<option value="3"' . ($sel == 3 ? ' selected' : '') . '>3</option>
<option value="4"' . ($sel == 4 ? ' selected' : '') . '>4 - ' . g_l('weClass', '[quality_medium]') . '</option>
<option value="5"' . ($sel == 5 ? ' selected' : '') . '>5</option>
<option value="6"' . ($sel == 6 ? ' selected' : '') . '>6</option>
<option value="7"' . ($sel == 7 ? ' selected' : '') . '>7</option>
<option value="8"' . ($sel == 8 ? ' selected' : '') . '>8 - ' . g_l('weClass', '[quality_high]') . '</option>
<option value="9"' . ($sel == 9 ? ' selected' : '') . '>9</option>
<option value="10"' . ($sel == 10 ? ' selected' : '') . '>10 - ' . g_l('weClass', '[quality_maximum]') . '</option>
</select>';
    }
 public function getPropertyPage()
 {
     echo we_html_multiIconBox::getJS() . we_html_multiIconBox::getHTML('PropertyPage', array(array("icon" => "path.gif", "headline" => g_l('weClass', '[path]'), "html" => $this->formPath(), "space" => 140), array("icon" => "doc.gif", "headline" => g_l('weClass', '[document]'), "html" => $this->formIsSearchable() . $this->formIsProtected(), "space" => 140), array("icon" => "meta.gif", "headline" => g_l('weClass', '[metainfo]'), "html" => $this->formMetaInfos(), "space" => 140), array("icon" => "navi.gif", "headline" => g_l('global', '[navigation]'), "html" => $this->formNavigation(), "space" => 140), array("icon" => "cat.gif", "headline" => g_l('global', '[categorys]'), "html" => $this->formCategory(), "space" => 140), array("icon" => "user.gif", "headline" => g_l('weClass', '[owners]'), "html" => $this->formCreatorOwners(), "space" => 140), array("icon" => "hyperlink.gif", "headline" => g_l('weClass', '[hyperlink]'), "html" => $this->formLink(), "space" => 140)));
 }
 * $Author: mokraemer $
 * $Date: 2015-08-25 00:57:29 +0200 (Tue, 25 Aug 2015) $
 *
 * This source is part of webEdition CMS. webEdition CMS is
 * free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * any later version.
 *
 * The GNU General Public License can be found at
 * http://www.gnu.org/copyleft/gpl.html.
 * A copy is found in the textfile
 * webEdition/licenses/webEditionCMS/License.txt
 *
 * @category   webEdition
 * @package none
 * @license    http://www.gnu.org/copyleft/gpl.html  GPL
 */
echo we_html_tools::getHtmlTop() . we_html_element::jsScript(JS_DIR . 'windows.js');
require_once WE_INCLUDES_PATH . 'we_editors/we_editor_script.inc.php';
echo STYLESHEET . weSuggest::getYuiFiles();
?>
</head>
<body class="weEditorBody">
	<form name="we_form" method="post" onsubmit="return false;"><?php 
echo we_class::hiddenTrans() . we_html_multiIconBox::getJS() . we_html_multiIconBox::getHTML("weImgProp", array(array("icon" => "upload.gif", "headline" => "", "html" => $GLOBALS['we_doc']->formUpload(), "space" => 140), array("icon" => "attrib.gif", "headline" => g_l('weClass', '[attribs]'), "html" => $GLOBALS['we_doc']->formProperties(), "space" => 140), array("icon" => "meta.gif", "headline" => g_l('weClass', '[metadata]'), "html" => $GLOBALS['we_doc']->formMetaInfos() . $GLOBALS['we_doc']->formMetaData(), "space" => 140), array('icon' => 'imgfocus.gif', 'headline' => 'Bildfokus', 'html' => $GLOBALS['we_doc']->formImageFocus(), 'space' => 140)), 20) . we_html_element::htmlHidden("we_complete_request", 1);
?>
	</form>
</body>

</html>