Changeset 633418
- Timestamp:
- 12/03/2012 11:05:39 AM (13 years ago)
- Location:
- dippler/trunk
- Files:
-
- 17 added
- 2 edited
-
classes/dippler-toolbar.php (modified) (2 diffs)
-
main.php (modified) (2 diffs)
-
themes/twentytwelve_dippler (added)
-
themes/twentytwelve_dippler/dippler-assignments-page.php (added)
-
themes/twentytwelve_dippler/dippler-blog-page.php (added)
-
themes/twentytwelve_dippler/dippler-courses-page.php (added)
-
themes/twentytwelve_dippler/dippler-enroll-page.php (added)
-
themes/twentytwelve_dippler/dippler-feed-page.php (added)
-
themes/twentytwelve_dippler/dippler-info-page.php (added)
-
themes/twentytwelve_dippler/dippler-participants-page.php (added)
-
themes/twentytwelve_dippler/dippler-portfolio-page.php (added)
-
themes/twentytwelve_dippler/dippler-profile-page.php (added)
-
themes/twentytwelve_dippler/dippler-resource-folder-page.php (added)
-
themes/twentytwelve_dippler/dippler-resource-page.php (added)
-
themes/twentytwelve_dippler/dippler-resources-page.php (added)
-
themes/twentytwelve_dippler/dippler-timeline-page.php (added)
-
themes/twentytwelve_dippler/header.php (added)
-
themes/twentytwelve_dippler/screenshot.png (added)
-
themes/twentytwelve_dippler/style.css (added)
Legend:
- Unmodified
- Added
- Removed
-
dippler/trunk/classes/dippler-toolbar.php
r628976 r633418 14 14 */ 15 15 16 function __construct( ) {16 function __construct( $menu_class = 'menu' ) { 17 17 $post_to = $this->arePermalinksEnabled() ? home_url().'/dippler-feed' : add_query_arg( array( 'page' => 'dippler-feed' ), home_url('/') ); 18 18 $html = '<form action="'.$post_to.'" method="post">'; … … 42 42 $html .= '</form>'; 43 43 44 echo '<div style="clear:both" class=" menu">';44 echo '<div style="clear:both" class="dippler-toolbar '.$menu_class.'">'; 45 45 if ( !empty( $option_list ) ) { 46 46 echo $html; -
dippler/trunk/main.php
r629001 r633418 26 26 27 27 //Keep WP official themes in descending order, so getBestTheme() would return newest first if available 28 private $supported_themes = array( 'twenty eleven_dippler', 'twentyten_dippler' );28 private $supported_themes = array( 'twentytwelve_dippler', 'twentyeleven_dippler', 'twentyten_dippler' ); 29 29 30 30 /** … … 889 889 890 890 /** 891 * This function handles template redirect, so we can display our custom pages from theme folder891 * This function handles template redirect, so we can display course images 892 892 */ 893 893
Note: See TracChangeset
for help on using the changeset viewer.