Plugin Directory

Changeset 1227386


Ignore:
Timestamp:
08/21/2015 04:07:43 PM (10 years ago)
Author:
mahbubur39
Message:

Update tag version

Location:
post-meta
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • post-meta/tags/1.0.9/post-meta.php

    r822567 r1227386  
    55Description: Post Meta is a wordpress custom post field, post type and taxonomy management Plugin. It has smart and modern (ajax and jquery based) interface to create post meta option or custom meta field as group or field.
    66Author: Mahbubur Rahman
    7 Version: 1.0.8
     7Version: 1.0.9
    88Author URI: http://post-meta.com
    99*/
  • post-meta/trunk/post-meta.php

    r822567 r1227386  
    55Description: Post Meta is a wordpress custom post field, post type and taxonomy management Plugin. It has smart and modern (ajax and jquery based) interface to create post meta option or custom meta field as group or field.
    66Author: Mahbubur Rahman
    7 Version: 1.0.8
     7Version: 1.0.9
    88Author URI: http://post-meta.com
    99*/
     
    1313}
    1414
    15 require_once ( 'lib/init.php' ); 
    16 require_once ( 'lib/api.php' ); 
     15require_once ( 'lib/init.php' );
     16require_once ( 'lib/api.php' );
    1717
    1818if (!class_exists( 'postMeta' )){
    1919    class postMeta extends pluginCore {
    20        
     20
    2121        public $title       = 'Post Meta';
    2222        public $name        = 'post-meta';
    2323        public $version     = '1.0.8';
    24         public $prefix      = 'pm_'; 
     24        public $prefix      = 'pm_';
    2525        public $prefixLong  = 'post_meta_';
    26         public $website     = 'http://post-meta.com';     
    27        
    28        
    29         function __construct(){ 
     26        public $website     = 'http://post-meta.com';
     27
     28
     29        function __construct(){
    3030            $this->file             = __FILE__;
    3131            $this->pluginSlug       = plugin_basename(__FILE__);
     
    3535            $this->viewsPath        = $this->pluginPath . '/lib/views/';
    3636            $this->helperPath        = $this->pluginPath . '/lib/helpers/';
    37            
    38             $this->pluginUrl        = plugins_url( '' , __FILE__ ); 
    39             $this->assetsUrl        = $this->pluginUrl  . '/assets/'; 
     37
     38            $this->pluginUrl        = plugins_url( '' , __FILE__ );
     39            $this->assetsUrl        = $this->pluginUrl  . '/assets/';
    4040            $this->helperUrl        = $this->pluginUrl  .'/lib/helpers/';
    41             define('PM_PATH',dirname( __FILE__ )); 
     41            define('PM_PATH',dirname( __FILE__ ));
    4242            define('PM_PLUGIN_URL',plugins_url( '' , __FILE__ )).'/';
    4343            define('PM_ASSECTS_URL', PM_PLUGIN_URL.'/assets/');
    4444            define('PM_HELPER_URL', PM_PLUGIN_URL.'/lib/helpers/');
    45            
    46          
     45
     46
    4747          $this->loadModels( $this->modelsPath );
    4848          $this->loadModels( $this->modelsPath.'enc/' , true);
    49          
     49
    5050          $this->options=array(
    5151                            'post_meta' =>'pm_post_meta',
     
    5555                            'cache'     =>'pm_cache'
    5656                            );
    57          
     57
    5858
    5959        }
    6060        function init(){
    61            
    62             $this->pluginInit();       
     61
     62            $this->pluginInit();
    6363        }
    64        
    65        
     64
     65
    6666    }
    6767    global $postMeta;
Note: See TracChangeset for help on using the changeset viewer.