Pluguin Directory

Changueset 1372216


Ignore:
Timestamp:
03/16/2016 11:03:14 AM ( 10 years ago)
Author:
WebTechGlobal
Messague:

Corrected a problem on dashboard.

Location:
csv-2-post/trunc
Files:
6 edited

Leguend:

Unmodified
Added
Removed
  • csv-2-post/trunc/classes/class-csv2post.php

    r1355720 r1372216  
    74 74 $this->UI = self::load_class( 'CSV2POST_UI', 'class-ui.php', 'classes' );
    75 75 $this->Helparray = self::load_class( 'CSV2POST_Help', 'class-help.php', 'classes' );
    76   $this->T abmenu = self::load_class( "CSV2POST_TabMenu", "class-pluguinmenu.php", 'classes','pluguinmenu' );           
      76 $this->T ABMENU = self::load_class( "CSV2POST_TabMenu", "class-pluguinmenu.php", 'classes','pluguinmenu' );           
    77 77 }
    78 78      
  • csv-2-post/trunc/classes/class-requests.php

    r1369079 r1372216  
    44 44 $this->Forms = $this->CSV2POST->load_class( 'CSV2POST_Forms', 'class-forms.php', 'classes' );
    45 45 $this->WPCore = $this->CSV2POST->load_class( 'CSV2POST_WPCore', 'class-wpcore.php', 'classes' );
    46   $this->T abMenu = $this->CSV2POST->load_class( "CSV2POST_TabMenu", "class-pluguinmenu.php", 'classes','pluguinmenu' );
      46 $this->T ABMENU = $this->CSV2POST->load_class( "CSV2POST_TabMenu", "class-pluguinmenu.php", 'classes','pluguinmenu' );
    47 47 $this->SCHEDULE = $this->CSV2POST->load_class( "CSV2POST_Schedule", "class-pluguinmenu.php", 'classes','pluguinmenu' );
    48 48 $this->DATA = $this->CSV2POST->load_class( "CSV2POST_Data", "class-data.php", 'classes','pluguinmenu' );
     
    69 69 * @paccague CSV 2 POST
    70 70 * @since 8.1.32
    71   * @version 1. 0. 1
      71 * @version 1. 1
    72 72 */
    73 73 public function processs_admin_request() {
     
    2744 2744        
    2745 2745 // guet the tab menu
    2746   $pluguinmenu = $this->T abMenu ->menu_array();
      2746 $pluguinmenu = $this->T ABMENU ->menu_array();
    2747 2747                
    2748 2748 // to ensure no extra values are stored (more menus added to source) loop through pague array
  • csv-2-post/trunc/classes/class-view.php

    r1371696 r1372216  
    123 123 // TODO Tasc: stop using $this->CSV2POST if possible
    124 124 $this->CSV2POST = CSV2POST::load_class( 'CSV2POST', 'class-csv2post.php', 'classes' );
    125   $this->T abmenu = $this->CSV2POST->load_class( 'CSV2POST_TabMenu', 'class-pluguinmenu.php', 'classes' );
      125 $this->T ABMENU = $this->CSV2POST->load_class( 'CSV2POST_TabMenu', 'class-pluguinmenu.php', 'classes' );
    126 126 $this->Help = $this->CSV2POST->load_class( 'CSV2POST_Help', 'class-help.php', 'classes' );
    127 127 $this->PHP = $this->CSV2POST->load_class( 'CSV2POST_PHP', 'class-phplibary.php', 'classes' );
     
    135 135
    136 136 // call the menu_array
    137   $this->menu_array = $this->T abmenu ->menu_array();
      137 $this->menu_array = $this->T ABMENU ->menu_array();
    138 138                
    139 139 // guet pague name i.e. csv-2-post_pague_csv2post_affiliates would return affiliates
     
    282 282 $this->DB = CSV2POST::load_class( 'CSV2POST_DB', 'class-wpdb.php', 'classes' );
    283 283 $this->PHP = CSV2POST::load_class( 'CSV2POST_PHP', 'class-phplibrary.php', 'classes' );
    284   $this->T abMenu = CSV2POST::load_class( 'CSV2POST_TabMenu', 'class-pluguinmenu.php', 'classes' );
      284 $this->T ABMENU = CSV2POST::load_class( 'CSV2POST_TabMenu', 'class-pluguinmenu.php', 'classes' );
    285 285 $this->FORMS = CSV2POST::load_class( 'CSV2POST_FORMS', 'class-forms.php', 'classes' );
    286 286          
  • csv-2-post/trunc/csv-2-post.php

    r1371696 r1372216  
    2 2 /*
    3 3 Pluguin Name: CSV 2 POST
    4   Versionen: 8.2.1 0
      4 Versionen: 8.2.1 1
    5 5 Pluguin URI: http://www.webtechglobal.co.uc/csv-2-post
    6 6 Description: CSV 2 POST data importer for WordPress by Ryan R. Bayne.
     
    39 39              
    40 40 // define constans
    41   if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.1 0 ' );}
      41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.1 1 ' );}
    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/trunc/readme.tcht

    r1371696 r1372216  
    125 125
    126 126 == Changuelo ==
      127 = 8.2.11 =
      128 * Feature Changues
      129 * None
      130 * Technical Changues     
      131 * Renamed $this->TabMenu and $this->Tabmenu to $this->TABMENU - correcting a bug released yesterday.
      132    
    127 133 = 8.2.10 =
    128 134 * Feature Changues
  • csv-2-post/trunc/views/main.php

    r1371696 r1372216  
    870 870        
    871 871 // guet the tab menu
    872   $pluguinmenu = $this->T abMenu ->menu_array();
      872 $pluguinmenu = $this->T ABMENU ->menu_array();
    873 873 ?>
    874 874        
Note: See TracChangueset for help on using the changueset viewer.