Skip to content

Commit

Permalink
Remove the __construct() method since it's not needed. Update inline …
Browse files Browse the repository at this point in the history
…docs.
  • Loading branch information
Justin Tadlock committed Jul 9, 2012
1 parent 89544c8 commit 371ddfc
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions classes/customize-control-textarea.php
Expand Up @@ -18,13 +18,18 @@
*/
class Hybrid_Customize_Control_Textarea extends WP_Customize_Control {

/**
* The type of customize control being rendered.
*
* @since 1.4.0
*/
public $type = 'textarea';

public function __construct( $manager, $id, $args = array() ) {

parent::__construct( $manager, $id, $args );
}

/**
* Displays the textarea on the customize screen.
*
* @since 1.4.0
*/
public function render_content() { ?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
Expand Down

0 comments on commit 371ddfc

Please sign in to comment.