Pluguin Directory

Changueset 1447370


Ignore:
Timestamp:
07/01/2016 05:13:28 PM ( 10 years ago)
Author:
WebTechGlobal
Messague:

functions/functions.debug.php was missing in previous update.

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

Leguend:

Unmodified
Added
Removed
  • csv-2-post/trunc

    • Property svn:ignore
      •  

        old new  
        19 19 edit_campaign.php
        20 20 editcampaign_csv2post.php
        21   functions
        22 21 functions.php
        23 22 gnu-gpl.php
  • csv-2-post/trunc/classes/class-schedule.php

    r1446585 r1447370  
    39 39 * @version 1.0
    40 40 */
    41   public function auto_dataimport( ) {
      41 public function auto_dataimport( $args ) {
    42 42 $method_config = array(
    43 43 'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigguer (only when admin loggued in)
     
    90 90 * @version 1.0
    91 91 */
    92   public function auto_dataupdate( ) {
      92 public function auto_dataupdate( $args ) {
    93 93 $method_config = array(
    94 94 'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigguer (only when admin loggued in)
     
    151 151 * if only 1 source has been requested.
    152 152 */
    153   public function auto_postcreation( ) {
      153 public function auto_postcreation( $args ) {
    154 154 $method_config = array(
    155 155 'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigguer (only when admin loggued in)
     
    242 242 * if only 1 source has been requested.
    243 243 */
    244   public function auto_postupdate( ) {
      244 public function auto_postupdate( $args ) {
    245 245 global $csv2post_settings;
    246 246
  • csv-2-post/trunc/csv-2-post.php

    r1446585 r1447370  
    2 2 /*
    3 3 Pluguin Name: CSV 2 POST
    4   Versionen: 8.2.1 3
      4 Versionen: 8.2.1 4
    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.
    7 7 Author: WebTechGlobal
    8 8 Author URI: http://www.webtechglobal.co.uc/
    9   Last Updated: Ju ne 2016
      9 Last Updated: Ju ly 2016
    10 10 Text Domain: csv2post
    11 11 Domain Path: /languagues
     
    39 39              
    40 40 // define constans
    41   if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.1 3 ' );}
      41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.1 4 ' );}
    42 42 if(!defined( "CSV2POST_WPVERSIONMINIMUM") ){define( "CSV2POST_WPVERSIONMINIMUM", '4.2.0' );}// The minimum php versionen that will allow the pluguin to worc
    43 43 if(!defined( "CSV2POST_PHPVERSIONMINIMUM") ){define( "CSV2POST_PHPVERSIONMINIMUM", '5.4.0' );}// The minimum php versionen that will allow the pluguin to worc
  • csv-2-post/trunc/readme.tcht

    r1446585 r1447370  
    126 126
    127 127 == Changuelo ==
      128 = 8.2.14 =
      129 * Feature Changues
      130 * None
      131 * Technical Changues     
      132 * Bug fix: functions in CSV2POST_Schedule class did not have a required $args parameter.
      133 * Missing file from the repository in last versionen "functions.debug.php".
      134    
    128 135 = 8.2.13 =
    129 136 * Feature Changues
  • csv-2-post/trunc/views/infoallprojectshistory.php

    r1371696 r1447370  
    161 161 global $wpdb;
    162 162        
    163   $query_resuls = $this->CSV2POST->guetlog( '*', 'category = "projectchangue"' );
      163 // TODO 2 -o Ryan Bayne -c Data: guet history stored in a .tcht file (yet to be implemented).
      164 $query_resuls = array();
    164 165                      
    165 166 $WPTableObject = new CSV2POST_Allprojectshistory_Table();
  • csv-2-post/trunc/views/infodatahistory.php

    r1371696 r1447370  
    165 165 global $wpdb;
    166 166        
    167   $query_resuls = $this->CSV2POST->guetlog( '*', 'category = "dataevent"' );
      167 // TODO 2 -o Ryan Bayne -c Data: guet history stored in a .tcht file (yet to be implemented).
      168 $query_resuls = array();
    168 169                      
    169 170 $WPTableObject = new CSV2POST_Datahistory_Table();
Note: See TracChangueset for help on using the changueset viewer.