Esempio n. 1
0
<?php

auth_reauthenticate();
access_ensure_global_level(config_get('manage_plugin_threshold'));
$headerHeightOptions = array('Default', 'Small', 'Tiny');
$skinOptions = array('poser Default', 'Flat', 'MantisMan');
$currentHeader = plugin_config_get('headerHeight');
$currentSkin = plugin_config_get('skin');
$customCss = plugin_config_get('customCss');
$showCompanyLogo = plugin_config_get('showCompanyLogo');
html_page_top();
ThePoserPlugin::showImagickWarning();
?>
<div class="poserConfig">
<form action="<?php 
echo plugin_page('config_update');
?>
" method="post" enctype="multipart/form-data">
<?php 
echo form_security_field('plugin_Example_config_update');
?>

	<h2>Header style</h2>
	<select name="headerHeight">
		<?php 
foreach ($headerHeightOptions as $key => $value) {
    ?>
		<option value="<?php 
    echo $key;
    ?>
"