コード例 #1
0
<?php

$current_extra = isset($_REQUEST['shub_extra_id']) ? (int) $_REQUEST['shub_extra_id'] : false;
$shub_extra = new SupportHubExtra();
if ($current_extra !== false) {
    $shub_extra->load($current_extra);
    ?>
		<div class="wrap">
			<h2>
				<?php 
    _e('Extra Details', 'support_hub');
    ?>
			</h2>

			<form action="" method="post">
				<input type="hidden" name="_process" value="save_extra_details">
				<input type="hidden" name="shub_extra_id"
				       value="<?php 
    echo (int) $shub_extra->get('shub_extra_id');
    ?>
">
				<?php 
    wp_nonce_field('save-extra' . (int) $shub_extra->get('shub_extra_id'));
    ?>

				<table class="form-table">
					<tbody>
					<tr>
						<th class="width1">
							<?php 
    _e('Extra Name', 'support_hub');