</div> <?php $tabControl->BeginNextTab(); ?> <div> <label for="REES46_img_width"><?= GetMessage('REES_OPTIONS_IMAGE_SIZE') ?></label> <br/> <input type="text" id="REES46_img_width" value="<?= \Rees46\Options::getImageWidth() ?>" name="image_width" style="width: 50px"/> <label for="REES46_img_height">x</label> <input type="text" id="REES46_img_height" value="<?= \Rees46\Options::getImageHeight() ?>" name="image_height" style="width: 50px"/> </div> <div style="margin-top: 40px; display: none;"> <label for="REES46_css"><?= GetMessage('REES_OPTIONS_CSS_FIELD') ?></label> <br/> <textarea id="REES46_css" style="width: 500px; height: 250px;" name="css"><?= strip_tags(\Rees46\Options::getRecommenderCSS()) ?></textarea> </div> <?php $tabControl->BeginNextTab(); ?> <?php if ($export_state === \Rees46\Service\Export::STATUS_NOT_PERFORMED): ?> <p> <?= GetMessage('REES_QUICK_EXPORT_DESC') ?> </p> <?php if(\Rees46\Options::getShopSecret() == ''): ?> <p><strong><?= GetMessage('REES_QUICK_EXPORT_DESC_NO_SECRET') ?></strong></p> <?php else: ?> <div> <input class="adm-btn-save" type="submit" value="<?= GetMessage('REES_QUICK_EXPORT_BUTTON') ?>" name="do_export"> </div>
public static function renderCss() { header('Content-type: text/css'); echo Options::getRecommenderCSS(); }