<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>templates/admin.tpl.php</filename>
    </added>
    <added>
      <filename>templates/input_fields.tpl.php</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -12,9 +12,26 @@ Author URI: http://jystewart.net/process/
 
 add_action('admin_menu', 'post_banners_add_custom_box');
 add_action('save_post', 'post_banners_process_saved_post');
+add_action('admin_menu', 'post_banners_admin_menu');
+
+function post_banners_admin_menu() {
+  add_options_page(__('Post Banners', 'post-banners'), __('Post Banners', 'post-banners'), 8, basename(__FILE__), 'post_banners_admin');
+}
+
+function post_banners_admin() {
+  $options = get_option('post_banners_options');
+  if (isset($_POST[&quot;post_banners_options_submit&quot;])) {
+    $options = array(
+      'display_banners_in_feeds' =&gt; $_POST['display_banners_in_feeds']
+    );
+    update_option('post_banners_options', $options);
+		$message = __('Options updated.', 'post-banners');
+  }
+  include dirname(__FILE__) . '/templates/admin.tpl.php';
+}
 
 function post_banners_input() {
-  include dirname(__FILE__) . '/templates/input_fields.tpl';
+  include dirname(__FILE__) . '/templates/input_fields.tpl.php';
 }
 
 function post_banners_add_custom_box() {</diff>
      <filename>post-banners.php</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>templates/input_fields.tpl</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>7c7115306d3205bb7968469dcc1ca5f325cece4a</id>
    </parent>
  </parents>
  <author>
    <name>James Stewart</name>
    <email>james@www.onlyconnect.me</email>
  </author>
  <url>http://github.com/jystewart/wordpress-post-banners/commit/70dce22b1a630640653371adea2d6129a95850c0</url>
  <id>70dce22b1a630640653371adea2d6129a95850c0</id>
  <committed-date>2008-12-31T09:17:03-08:00</committed-date>
  <authored-date>2008-12-31T09:17:03-08:00</authored-date>
  <message>Add admin page for setting options</message>
  <tree>981dbea66f75b48c4c71129b98f49669af21dbd4</tree>
  <committer>
    <name>James Stewart</name>
    <email>james@www.onlyconnect.me</email>
  </committer>
</commit>
