Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add slug collection setting.
This always existed behind the scenes, but it'll be useful for users to
be able to customize it once crossover characters and storylines are
fully implemented.
  • Loading branch information
Michael Sisk committed Feb 6, 2013
1 parent 6337db2 commit dd43a02
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 15 additions & 3 deletions -/php/config.php
Expand Up @@ -83,6 +83,7 @@ public function admin_init() {
foreach ( array_keys( self::$config[ 'collections' ] ) as $k ) {
add_settings_section( "{$k}-main", __( 'General Settings', 'webcomic' ), array( $this, 'section' ), "{$k}-options" );
add_settings_field( "{$k}_name", __( 'Name', 'webcomic' ), array( $this, 'collection_name' ), "{$k}-options", "{$k}-main", array( 'label_for' => 'webcomic_name' ) );
add_settings_field( "{$k}_slug", __( 'Slug', 'webcomic' ), array( $this, 'collection_slug' ), "{$k}-options", "{$k}-main", array( 'label_for' => 'webcomic_slug' ) );
add_settings_field( "{$k}_description", __( 'Description', 'webcomic' ), array( $this, 'collection_description' ), "{$k}-options", "{$k}-main", array( 'label_for' => 'webcomic_description' ) );
add_settings_field( "{$k}_image", __( 'Poster', 'webcomic' ), array( $this, 'collection_image' ), "{$k}-options", "{$k}-main", array( 'label_for' => 'webcomic_image' ) );
add_settings_field( "{$k}_theme", __( 'Theme', 'webcomic' ), array( $this, 'collection_theme' ), "{$k}-options", "{$k}-main", array( 'label_for' => 'webcomic_theme' ) );
Expand Down Expand Up @@ -346,6 +347,17 @@ public function collection_name() {
<?php
}

/** Render the Slug setting.
*
* @uses Webcomic::$config
*/
public function collection_slug() {
?>
<input type="text" name="webcomic_slug" id="webcomic_slug" value="<?php echo esc_attr( self::$config[ 'collections' ][ $_GET[ 'post_type' ] ][ 'slugs' ][ 'name' ] ); ?>" class="regular-text">
<p class="description"><?php _e( 'The The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.', 'webcomic' ); ?></p>
<?php
}

/** Render the Description setting.
*
* @uses Webcomic::$config
Expand All @@ -365,8 +377,8 @@ public function collection_description() {
public function collection_image() {
?>
<div id="webcomic_collection_image" data-webcomic-admin-url="<?php echo admin_url(); ?>"><?php self::ajax_collection_image( self::$config[ 'collections' ][ $_GET[ 'post_type' ] ][ 'image' ], $_GET[ 'post_type' ] ); ?></div>
<p class="description"><?php _e( "The poster is a representative image that can be displayed on your site. Don't forget to <strong>Save Changes</strong> after updating the poster.", 'webcomic' ); ?></p>
<?php
printf( '<p class="description">%s</p>', __( "The poster is a representative image that can be displayed on your site. Don't forget to <strong>Save Changes</strong> after updating the poster.", 'webcomic' ) );
}

/** Render the Theme setting.
Expand Down Expand Up @@ -964,7 +976,7 @@ public function save( $options ) {
'main' => isset( $_POST[ 'webcomic_feeds_main' ] )
),
'slugs' => array(
'name' => sanitize_title( $_POST[ 'webcomic_name' ], self::$config[ 'collections' ][ $id ][ 'slugs' ][ 'name' ] ),
'name' => sanitize_title( $_POST[ 'webcomic_slug' ], self::$config[ 'collections' ][ $id ][ 'slugs' ][ 'name' ] ),
'archive' => self::$config[ 'collections' ][ $id ][ 'slugs' ][ 'archive' ],
'webcomic' => self::$config[ 'collections' ][ $id ][ 'slugs' ][ 'webcomic' ],
'storyline' => self::$config[ 'collections' ][ $id ][ 'slugs' ][ 'storyline' ],
Expand Down Expand Up @@ -1119,7 +1131,7 @@ public function page() {
?>
<div class="wrap" >
<div id="icon-options-general" class="icon32" data-webcomic-admin-url="<?php echo admin_url(); ?>"></div>
<h2><?php echo get_admin_page_title(); if ( 'webcomic-options' !== $page ) { ?><a href="#" class="add-new-h2"><?php echo $_GET[ 'post_type' ]; ?></a><?php } ?></h2>
<h2><?php echo get_admin_page_title(); if ( 'webcomic-options' !== $page ) { ?><a href="#" class="add-new-h2" title="<?php esc_attr_e( 'Collection ID', 'webcomic' ); ?>"><?php echo $_GET[ 'post_type' ]; ?></a><?php } ?></h2>
<form action="options.php" method="post"<?php echo 'webcomic' !== $page ? ' enctype="multipart/form-data"' : ''; ?>>
<?php
settings_fields( 'webcomic-options' );
Expand Down
2 changes: 2 additions & 0 deletions -/php/help.php
Expand Up @@ -788,9 +788,11 @@ private function collection_settings_general() {
<li>%s</li>
<li>%s</li>
<li>%s</li>
<li>%s</li>
</ul>',
__( 'These settings allow you to change some of the basic information and features related to your collection:', 'webcomic' ),
__( '<strong>Name</strong> - The name is how it appears on your site.', 'webcomic' ),
__( '<strong>Slug</strong> - The The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.', 'webcomic' ),
__( '<strong>Description</strong> - The description is not prominent by default; it may be used in various ways, however.', 'webcomic' ),
__( '<strong>Poster</strong> - The poster is a representative image that can be displayed on your site.', 'webcomic' ),
__( '<strong>Theme</strong> - Determines what theme will be used when a user is viewing a page related to this collection.', 'webcomic' ),
Expand Down

0 comments on commit dd43a02

Please sign in to comment.