Changeset 1368330
- Timestamp:
- 03/10/2016 02:40:23 PM (10 years ago)
- Location:
- csv-2-post/trunk
- Files:
-
- 5 edited
-
csv-2-post.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
views/infolastpost.php (modified) (1 diff)
-
views/postcategories.php (modified) (1 diff)
-
views/setupimport.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
csv-2-post/trunk/csv-2-post.php
r1367686 r1368330 2 2 /* 3 3 Plugin Name: CSV 2 POST 4 Version: 8.2. 74 Version: 8.2.8 5 5 Plugin URI: http://www.webtechglobal.co.uk/csv-2-post 6 6 Description: CSV 2 POST data importer for WordPress by Ryan R. Bayne. … … 39 39 40 40 // define constants 41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2. 7' );}41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.8' );} 42 42 if(!defined( "CSV2POST_TITLE") ){define( "CSV2POST_TITLE", 'CSV 2 POST' );} 43 43 if(!defined( "CSV2POST__FILE__") ){define( "CSV2POST__FILE__", __FILE__);} -
csv-2-post/trunk/readme.txt
r1367686 r1368330 125 125 126 126 == Changelog == 127 = 8.2.8 = 128 * Feature Changes 129 * None 130 * Technical Changes 131 * Bug fix related to accessing view file when importing data. 132 127 133 = 8.2.7 = 128 134 * Feature Changes -
csv-2-post/trunk/views/infolastpost.php
r1367686 r1368330 39 39 return $this->meta_boxes_array = array( 40 40 // array( id, title, callback (usually parent, approach created by Ryan Bayne), context (position), priority, call back arguments array, add to dashboard (boolean), required capability 41 array( $ view_name . '-generalpostsettings', __( 'General', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'generalpostsettings' ), true, 'activate_plugins' ),42 array( $ view_name . '-lastpostcontent', __( 'Content', 'csv2post' ), array( $this, 'parent' ), 'normal','default',array( 'formid' => 'lastpostcontent' ), true, 'activate_plugins' ),41 array( $this->view_name . '-generalpostsettings', __( 'General', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'generalpostsettings' ), true, 'activate_plugins' ), 42 array( $this->view_name . '-lastpostcontent', __( 'Content', 'csv2post' ), array( $this, 'parent' ), 'normal','default',array( 'formid' => 'lastpostcontent' ), true, 'activate_plugins' ), 43 43 ); 44 44 } -
csv-2-post/trunk/views/postcategories.php
r1367686 r1368330 45 45 array( $this->view_name . '-categorycreation', __( 'Category Creation', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'categorycreation' ), true, 'activate_plugins' ), 46 46 array( $this->view_name . '-setpostscategories', __( 'Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'setpostscategories' ), true, 'activate_plugins' ), 47 //array( $ view_name . '-resetpostscategories', __( 'Re-Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'resetpostscategories' ), true, 'activate_plugins' ),47 //array( $this->view_name . '-resetpostscategories', __( 'Re-Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'resetpostscategories' ), true, 'activate_plugins' ), 48 48 49 49 ); -
csv-2-post/trunk/views/setupimport.php
r1367686 r1368330 89 89 90 90 } else { 91 $this->add_meta_box( $ view_name . '-nocurrentproject', __( 'No Current Project', 'csv2post' ), array( $this->UI, 'metabox_nocurrentproject' ), 'normal','default',array( 'formid' => 'nocurrentproject' ) );91 $this->add_meta_box( $this->view_name . '-nocurrentproject', __( 'No Current Project', 'csv2post' ), array( $this->UI, 'metabox_nocurrentproject' ), 'normal','default',array( 'formid' => 'nocurrentproject' ) ); 92 92 } 93 93 }
Note: See TracChangeset
for help on using the changeset viewer.