-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from matheusgimenez/master
Adicionando classe de Post Status
- Loading branch information
Showing
3 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
(function ( $ ) { | ||
'use strict'; | ||
|
||
/** | ||
* Custom post status | ||
*/ | ||
$( window ).load( function() { | ||
var html = ''; | ||
var label = false; | ||
var $odinMeta = document.querySelectorAll( 'meta.odin-custom-status-meta' ); | ||
|
||
Array.prototype.forEach.call( $odinMeta, function( item ) { | ||
var $meta = $( item ); | ||
var args = $.parseJSON( $meta.attr( 'value' ) ); | ||
|
||
if( $( document.body ).hasClass( 'post-php' ) || $( document.body ).hasClass( 'post-new-php' ) ) { | ||
var select = ''; | ||
if( args.select ) { | ||
select = 'selected="selected"'; | ||
label = '<span id="post-status-display"> ' + $.trim( args.appliedLabel ) + '</span>'; | ||
} | ||
html += '<option value="' + $.trim( args.slug ) + '" ' + $.trim( select ) + '>' + $.trim( args.appliedLabel ) + '</option>'; | ||
} | ||
if( $( document.body ).hasClass( 'edit-php' ) ) { | ||
html += '<option value="' + $.trim( args.slug ) + '">' + $.trim( args.appliedLabel ) + '</option>'; | ||
} | ||
}); | ||
if( $( document.body ).hasClass( 'post-php' ) || $( document.body ).hasClass( 'post-new-php' ) ) { | ||
$( '#post_status ').append( html ); | ||
if( label ) { | ||
$( 'label[for="post_status"]' ).append( label ); | ||
} | ||
} | ||
if( $( document.body ).hasClass( 'edit-php' ) ) { | ||
var $inlineStatus = document.querySelectorAll( '.inline-edit-status select' ); | ||
Array.prototype.forEach.call( $inlineStatus, function( item ) { | ||
$( item ).append( html ); | ||
}); | ||
} | ||
}); | ||
}( jQuery )); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?php | ||
/** | ||
* Odin_Post_Status Class. | ||
* | ||
* Build Custom Post Status | ||
* | ||
* @package Odin | ||
* @category Metabox | ||
* @author WPBrasil | ||
* @version 2.1.4 | ||
*/ | ||
class Odin_Post_Status { | ||
|
||
/** | ||
* The name of Custom Post Status. | ||
* | ||
* @var string | ||
**/ | ||
protected $post_status; | ||
|
||
/** | ||
* Array of Post Types will applied to. | ||
* | ||
* @var arrays | ||
**/ | ||
protected $post_types = array(); | ||
|
||
/** | ||
* Text used to display the custom post status | ||
* when it can be applied to a post. | ||
* | ||
* @var string | ||
**/ | ||
protected $action_label; | ||
|
||
/** | ||
* Text used to display the custom post status | ||
* when it has been applied to a post. | ||
* | ||
* @var string | ||
**/ | ||
protected $applied_label; | ||
|
||
/** | ||
* Array of arguments to pass register_post_status(); | ||
* | ||
* @var array | ||
**/ | ||
protected $args = array(); | ||
|
||
/** | ||
* Constructor | ||
* | ||
* @param string $post_status Name of the Custom Post Status | ||
* @param array $post_types Array of Posts Types to apply the Custom Post Status | ||
* @param array $args Array of arguments to pass register_post_status() function | ||
* | ||
* @return void | ||
**/ | ||
public function __construct( $post_status, $post_types, $args ) { | ||
$this->post_status = $post_status; | ||
$this->post_types = $post_types; | ||
$this->action_label = isset( $args['label'] ) ? $args['label'] : $post_status; | ||
$this->applied_label = isset( $args['applied_label'] ) ? $args['applied_label'] : $this->action_label; | ||
$this->args = $args; | ||
|
||
// Removes the arguments that do not belong to register_post_type | ||
unset( $this->args['applied_label'] ); | ||
|
||
if( ! isset( $this->args['label_count'] ) ) { | ||
$this->args['label_count'] = _n_noop( $this->applied_label . ' <span class="count">(%s)</span>', $this->applied_label . ' <span class="count">(%s)</span>' ); | ||
} | ||
|
||
// Register post status | ||
add_action( 'init', array( $this, 'register_post_status' ) ); | ||
|
||
// Add meta tags to pass args | ||
add_action( 'admin_head', array( $this, 'meta_tags' ) ); | ||
|
||
// Load scripts | ||
add_action( 'admin_enqueue_scripts', array( $this, 'scripts' ) ); | ||
|
||
} | ||
|
||
/** | ||
* Register the Custom Post Status with Wordpress ;) | ||
* | ||
* @param string $post_status The name of Custom Post Status. | ||
* @param array $args Array of arguments to pass register_post_status() | ||
* | ||
* @return void | ||
**/ | ||
public function register_post_status() { | ||
register_post_status( $this->post_status, $this->args ); | ||
} | ||
|
||
/** | ||
* Add meta tags to JS | ||
* | ||
* @return void | ||
*/ | ||
public function meta_tags() { | ||
$screen = get_current_screen(); | ||
if( ! in_array( $screen->post_type, $this->post_types ) ) { | ||
return; | ||
} | ||
|
||
$args = array( | ||
'postTypes' => $this->post_types, | ||
'appliedLabel' => $this->applied_label, | ||
'slug' => $this->post_status, | ||
); | ||
if( $screen->base === 'post' ) { | ||
global $post; | ||
if( is_object( $post ) && $post->post_status === $this->post_status ) { | ||
$args['select'] = true; | ||
} | ||
} | ||
printf( '<meta class="odin-custom-status-meta" value="%s" />', esc_attr( json_encode( $args ) ) ); | ||
} | ||
|
||
/** | ||
* Load post status scripts and inject JS vars | ||
* | ||
* @return void | ||
*/ | ||
public function scripts() { | ||
// Load admin JS | ||
wp_enqueue_script( 'odin-custom-status', get_template_directory_uri() . '/core/assets/js/admin-custom-status.js', array( 'jquery' ), null, true ); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters