Plugin Directory

Changeset 2531102


Ignore:
Timestamp:
05/13/2021 10:26:15 AM (5 years ago)
Author:
parasralhan
Message:

tagging version 0.0.2

Location:
bonzer-custom-fields
Files:
832 added
7 edited
2 copied

Legend:

Unmodified
Added
Removed
  • bonzer-custom-fields/tags/0.0.2/trunk/bonzer-custom-fields.php

    r1859531 r2531102  
    55Plugin Name: Bonzer Custom Fields
    66Description: create Custom Fields for any page in the Wordress Admin
    7 Version: 0.0.1
     7Version: 0.0.2
    88Author: Paras Ralhan
    99Author URI: http://parasralhan.com
  • bonzer-custom-fields/tags/0.0.2/trunk/inc/builders/Custom_Fields_Builder.php

    r2260395 r2531102  
    9191    add_action( 'save_post', array(
    9292      $this,
    93       'save_meta' ) );
     93      'save_meta' ), 11, 3 );
    9494  }
    9595
     
    296296   * @Return void
    297297   * */
    298   public function save_meta( $post_id ) {
    299     $screen = get_post_type();
     298  public function save_meta( $post_id, $post, $update ) {
     299    $screen = $post->post_type;
    300300    $POST_DATA = $_POST;
    301301    if ( !isset( $POST_DATA[ "{$screen}_custom_meta" ] ) ) {
  • bonzer-custom-fields/tags/0.0.2/trunk/readme.txt

    r2472178 r2531102  
    77License: GPL2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     9Stable Tag: 0.0.2
    910
    1011create wide array of input fields at various location inside the wordpress admin panel.
  • bonzer-custom-fields/tags/0.0.2/trunk/vendor/bonzer/inputs/src/contracts/Input_Abstract.php

    r1859531 r2531102  
    112112    $this->_name = $this->_set_attr( $args[ 'name' ] );
    113113    $this->_id = $this->_set_attr( $args[ 'id' ] );
    114     $this->_label = $this->_set_attr( $args[ 'label' ] );
     114    $this->_label = $args[ 'label' ];
    115115    $this->_desc = isset( $args[ 'desc' ] ) ? $args[ 'desc' ] : '';
    116116    $this->_value = isset( $args[ 'value' ] ) ? $args[ 'value' ] : '';
  • bonzer-custom-fields/trunk/bonzer-custom-fields.php

    r1859531 r2531102  
    55Plugin Name: Bonzer Custom Fields
    66Description: create Custom Fields for any page in the Wordress Admin
    7 Version: 0.0.1
     7Version: 0.0.2
    88Author: Paras Ralhan
    99Author URI: http://parasralhan.com
  • bonzer-custom-fields/trunk/inc/builders/Custom_Fields_Builder.php

    r2260395 r2531102  
    9191    add_action( 'save_post', array(
    9292      $this,
    93       'save_meta' ) );
     93      'save_meta' ), 11, 3 );
    9494  }
    9595
     
    296296   * @Return void
    297297   * */
    298   public function save_meta( $post_id ) {
    299     $screen = get_post_type();
     298  public function save_meta( $post_id, $post, $update ) {
     299    $screen = $post->post_type;
    300300    $POST_DATA = $_POST;
    301301    if ( !isset( $POST_DATA[ "{$screen}_custom_meta" ] ) ) {
  • bonzer-custom-fields/trunk/readme.txt

    r2472178 r2531102  
    77License: GPL2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     9Stable Tag: 0.0.2
    910
    1011create wide array of input fields at various location inside the wordpress admin panel.
  • bonzer-custom-fields/trunk/vendor/bonzer/inputs/src/contracts/Input_Abstract.php

    r1859531 r2531102  
    112112    $this->_name = $this->_set_attr( $args[ 'name' ] );
    113113    $this->_id = $this->_set_attr( $args[ 'id' ] );
    114     $this->_label = $this->_set_attr( $args[ 'label' ] );
     114    $this->_label = $args[ 'label' ];
    115115    $this->_desc = isset( $args[ 'desc' ] ) ? $args[ 'desc' ] : '';
    116116    $this->_value = isset( $args[ 'value' ] ) ? $args[ 'value' ] : '';
Note: See TracChangeset for help on using the changeset viewer.