--- /dev/null
+<?php
+/*
+ * Plugin Name: Theatre Pre-Sale
+ * Plugin URI: https://johnzone.org/vvk
+ * Description: Keep track of sold tickets
+ * Author: John Janus
+ * License: GPL3
+ * License URI: https://gnu.org/licenses/gpl3
+ */
+defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
+
+require_once ( plugin_dir_path(__FILE__) . 'wp-show-cpt.php' );
+require_once ( plugin_dir_path(__FILE__) . 'wp-show-metaboxes.php' );
<?php
-/*
- * Plugin Name: Theatre Pre-Sale
- * Plugin URI: https://johnzone.org/vvk
- * Description: Keep track of sold tickets
- * Author: John Janus
- * License: GPL3
- * License URI: https://gnu.org/licenses/gpl3
- */
-defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
// custom post type for events
'feeds' => true
),
'supports' => array (
- 'author',
+ #'author',
'editor',
'title',
- 'custom-fields',
+ #'custom-fields',
'thumnails'
)
) );
)
) );
}
-
-?>
--- /dev/null
+<?php
+
+function presale_add_custom_metabox() {
+ add_meta_box(
+ 'presale_meta',
+ __ ('Show Presale'),
+ 'presale_meta_callback',
+ 'presale_show',
+ 'normal',
+ 'high'
+ );
+}
+
+add_action( 'add_meta_boxes', 'presale_add_custom_metabox');
+
+function presale_meta_callback( $post ) {
+ wp_nonce_field ( basename( __FILE__ ), 'presale_nonce');
+ $presale_stored_data = get_post_meta( $post->ID);
+ ?>
+ <div>
+ <div class="meta-row">
+ <div class="meta-th"><label for="presale-seats" class="show-title">Show ID</label></div>
+ <div class="meta-td">
+ <input type="text" name="presale-seats" id="presale-seats"
+ value="<?php if (!empty ( $presale_stored_data['presal-seats'])) echo esc_attr( $presale_stored_data['presal-seats'][0] ) ?>">
+ </input>
+ </div>
+ </div>
+ </div>
+ <?php
+}
+
+