web/wp-content/plugins/wptouch/html/page-area.php
changeset 136 bde1974c263b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/wptouch/html/page-area.php	Wed Feb 03 15:37:20 2010 +0000
@@ -0,0 +1,61 @@
+<?php global $wptouch_settings; ?>
+
+<div class="metabox-holder">
+	<div class="postbox">
+		<h3><span class="page-options">&nbsp;</span><?php _e( "Logo Icon // Menu Items &amp; Pages Icons", "wptouch" ); ?></h3>
+
+			<div class="left-content">
+				<h4><?php _e( "Logo / Home Screen Icon <br />&amp; Default Menu Items", "wptouch" ); ?></h4>
+				<p><?php _e( "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu.", "wptouch" ); ?> 						
+				<strong><?php _e( "Remember, only those checked will be shown.", "wptouch" ); ?></strong></p>
+				<p><?php _e( "Enable/Disable default items in the WPtouch site menu.", "wptouch"); ?></p>
+<br /><br />
+				<h4><?php _e( "Pages + Icons", "wptouch" ); ?></h4>
+				<p><?php _e( "Next, select the icons from the lists that you want to pair with each page menu item.", "wptouch" ); ?></p>
+				<p><?php _e( "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default).", "wptouch" ); ?></p>
+			</div><!-- left-content -->
+		
+	<div class="right-content wptouch-pages">
+		<ul>
+			<li><select name="enable_main_title">
+					<?php bnc_get_icon_drop_down_list( $wptouch_settings['main_title']); ?>
+				</select>
+				<?php _e( "Logo &amp; Home Screen Bookmark Icon", "wptouch" ); ?>
+				<br />
+			</li>
+		</ul>
+		<ul>
+			<li><input type="checkbox" class="checkbox" name="enable-main-home" <?php if (isset($wptouch_settings['enable-main-home']) && $wptouch_settings['enable-main-home'] == 1) echo('checked'); ?> /><label for="enable-main-home"><?php _e( "Enable Home Menu Item", "wptouch" ); ?></label></li>
+			<li><input type="checkbox" class="checkbox" name="enable-main-rss" <?php if (isset($wptouch_settings['enable-main-rss']) && $wptouch_settings['enable-main-rss'] == 1) echo('checked'); ?> /><label for="enable-main-rss"><?php _e( "Enable RSS Menu Item", "wptouch" ); ?></label></li>
+			<li><input type="checkbox" class="checkbox" name="enable-main-email" <?php if (isset($wptouch_settings['enable-main-email']) && $wptouch_settings['enable-main-email'] == 1) echo('checked'); ?> /><label for="enable-main-email"><?php _e( "Enable Email Menu Item", "wptouch" ); ?> <small>(<?php _e( "Uses default WordPress admin e-mail", "wptouch" ); ?>)</small></label><br /><br /><br /></li>
+		
+		<?php if ( count( $pages ) ) { ?>
+			<li><br /><br />
+			<select name="sort-order">
+					<option value="name"<?php if ( $wptouch_settings['sort-order'] == 'name') echo " selected"; ?>><?php _e( "By Name", "wptouch" ); ?></option>
+					<option value="page"<?php if ( $wptouch_settings['sort-order'] == 'page') echo " selected"; ?>><?php _e( "By Page ID", "wptouch" ); ?></option>
+				</select>
+				<?php _e( "Menu List Sort Order", "wptouch" ); ?>
+			</li>
+			<?php } ?>
+			<?php $pages = bnc_get_pages_for_icons(); ?>
+			<?php if ( count( $pages ) ) { ?>
+				<?php foreach ( $pages as $page ) { ?>
+				<li><span>
+						<input class="checkbox" type="checkbox" name="enable_<?php echo $page->ID; ?>"<?php if ( isset( $wptouch_settings[$page->ID] ) ) echo " checked"; ?> />
+						<label class="wptouch-page-label" for="enable_<?php echo $page->ID; ?>"><?php echo $page->post_title; ?> <?php _e( "Page", "wptouch" ); ?></label>
+					</span>
+					<select class="page-select" name="icon_<?php echo $page->ID; ?>">
+						<?php bnc_get_icon_drop_down_list( $wptouch_settings[ $page->ID ]); ?>
+					</select>
+					
+				</li>
+				<?php } ?>
+			<?php } else { ?>
+				<strong ><?php _e( "You have no pages yet. Create some first!", "wptouch" ); ?></strong>
+			<?php } ?>
+		</ul>
+	</div><!-- right-content -->		
+	<div class="bnc-clearer"></div>
+	</div><!-- postbox -->
+</div><!-- metabox -->
\ No newline at end of file