Plugin Directory

Changeset 1447370


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

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

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

Legend:

Unmodified
Added
Removed
  • csv-2-post/trunk

    • Property svn:ignore
      •  

        old new  
        1919edit_campaign.php
        2020editcampaign_csv2post.php
        21 functions
        2221functions.php
        2322gnu-gpl.php
  • csv-2-post/trunk/classes/class-schedule.php

    r1446585 r1447370  
    3939    * @version 1.0
    4040    */
    41     public function auto_dataimport() {
     41    public function auto_dataimport( $args ) {
    4242        $method_config = array(
    4343            'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigger (only when admin logged in)
     
    9090    * @version 1.0
    9191    */
    92     public function auto_dataupdate() {
     92    public function auto_dataupdate( $args ) {
    9393        $method_config = array(
    9494            'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigger (only when admin logged in)
     
    151151    * if only 1 source has been requested.
    152152    */
    153     public function auto_postcreation() {
     153    public function auto_postcreation( $args ) {
    154154        $method_config = array(
    155155            'type' => 'wtgcron',// wtgcron, wpcron (wp core), admintrigger (only when admin logged in)
     
    242242    * if only 1 source has been requested. 
    243243    */
    244     public function auto_postupdate() {
     244    public function auto_postupdate( $args ) {
    245245        global $csv2post_settings;
    246246
  • csv-2-post/trunk/csv-2-post.php

    r1446585 r1447370  
    22/*
    33Plugin Name: CSV 2 POST
    4 Version: 8.2.13
     4Version: 8.2.14
    55Plugin URI: http://www.webtechglobal.co.uk/csv-2-post
    66Description: CSV 2 POST data importer for WordPress by Ryan R. Bayne.
    77Author: WebTechGlobal
    88Author URI: http://www.webtechglobal.co.uk/
    9 Last Updated: June 2016
     9Last Updated: July 2016
    1010Text Domain: csv2post
    1111Domain Path: /languages
     
    3939             
    4040// define constants                             
    41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.13' );}
     41if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.14' );}
    4242if(!defined( "CSV2POST_WPVERSIONMINIMUM") ){define( "CSV2POST_WPVERSIONMINIMUM", '4.2.0' );}// The minimum php version that will allow the plugin to work
    4343if(!defined( "CSV2POST_PHPVERSIONMINIMUM") ){define( "CSV2POST_PHPVERSIONMINIMUM", '5.4.0' );}// The minimum php version that will allow the plugin to work
  • csv-2-post/trunk/readme.txt

    r1446585 r1447370  
    126126
    127127== Changelog ==
     128= 8.2.14 =
     129* Feature Changes
     130    * None
     131* Technical Changes     
     132    * Bug fix: functions in CSV2POST_Schedule class did not have a required $args parameter.
     133    * Missing file from the repository in last version "functions.debug.php".
     134   
    128135= 8.2.13 =
    129136* Feature Changes
  • csv-2-post/trunk/views/infoallprojectshistory.php

    r1371696 r1447370  
    161161        global $wpdb;
    162162       
    163         $query_results = $this->CSV2POST->getlog( '*', 'category = "projectchange"' );
     163        // TODO 2 -o Ryan Bayne -c Data: get history stored in a .txt file (yet to be implemented).
     164        $query_results = array();
    164165                     
    165166        $WPTableObject = new CSV2POST_Allprojectshistory_Table();
  • csv-2-post/trunk/views/infodatahistory.php

    r1371696 r1447370  
    165165        global $wpdb;
    166166       
    167         $query_results = $this->CSV2POST->getlog( '*', 'category = "dataevent"' );
     167        // TODO 2 -o Ryan Bayne -c Data: get history stored in a .txt file (yet to be implemented).
     168        $query_results = array();
    168169                     
    169170        $WPTableObject = new CSV2POST_Datahistory_Table();
Note: See TracChangeset for help on using the changeset viewer.