Changeset 3019604
- Timestamp:
- 01/10/2024 03:48:58 AM (2 years ago)
- Location:
- the-tech-tribe/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
admin/js/the-tribal-plugin-admin.js (modified) (1 diff)
-
app/AjaxImportPost.php (modified) (1 diff)
-
app/ImportPost.php (modified) (4 diffs)
-
the-tribal-plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
the-tech-tribe/trunk/README.txt
r2977885 r3019604 1 1 === The Tribal Plugin === 2 Contributors: nigelmoore1 2 Contributors: nigelmoore1, allan.casilum 3 3 Donate link: thetechtribe.com 4 4 Tags: techtribe, content, syndication 5 5 Requires at least: 5.0 6 Tested up to: 6. 3.17 Stable tag: 1. 2.26 Tested up to: 6.4.2 7 Stable tag: 1.3.0 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 59 59 60 60 == Changelog == 61 62 = 1.3.0 - January 08, 2024 = 63 * Fix warning popup message 64 * Maintenance update 65 * Test in WordPress version 6.4.2 61 66 62 67 = 1.2.2 - October 11, 2023 = -
the-tech-tribe/trunk/admin/js/the-tribal-plugin-admin.js
r2627939 r3019604 134 134 135 135 request.done(function( msg ) { 136 //console.log(msg);136 console.log(msg); 137 137 toggleAlertHTML(true, ajaxShowAlert(msg)); 138 138 toggleAjaxStatusHTML(false); -
the-tech-tribe/trunk/app/AjaxImportPost.php
r2627939 r3019604 51 51 52 52 $ret = \TheTribalPlugin\ImportPost::get_instance()->import(); 53 tttCustomLogs("manual import ret"); 54 tttCustomLogs($ret); 55 tttCustomLogs("manual import ret"); 56 53 57 $returnCode = $ret->data['code']; 54 58 $returnMsg = $ret->data['msg']; -
the-tech-tribe/trunk/app/ImportPost.php
r2701685 r3019604 68 68 $post = new Post; 69 69 $getPost = $post->get($args); 70 71 tttCustomLogs('getPost'); 72 tttCustomLogs($getPost); 73 tttCustomLogs($ret); 74 tttCustomLogs('getPost'); 70 75 71 76 if( … … 77 82 && $getPost->data['code'] != 'error' 78 83 && $getPost->data['posts']['total_post'] >= 1 84 && $getPost->data['success'] == true 79 85 ) { 86 tttCustomLogs("start post data import "); 80 87 $timezone_offset = get_option( 'gmt_offset' ); 81 88 … … 202 209 } 203 210 } 204 }else{ 205 $ret['success'] = true; 206 $ret['msg-header'] = $statusVerbage['nothing']['header']; 207 $ret['msg'] = $statusVerbage['nothing']['msg']; 208 //$ret['msg'] = isset($getPost->data['msg']) ? $getPost->data['msg'] : ''; 209 //$ret['code'] = isset($getPost->data['code']) ? $getPost->data['code'] : ''; 211 } 212 else{ 213 $ret['success'] = $getPost->data['success']; 214 $ret['msg-header'] = $getPost->data['headers']; 215 $ret['msg'] = $getPost->data['msg']; 210 216 $ret['code'] = $getPost->data['code']; 211 217 $ret['post_count_imported'] = $countSuccess; … … 254 260 tttCustomLogs("nothing to import "); 255 261 } 256 262 257 263 tttLastChecked(); 258 264 -
the-tech-tribe/trunk/the-tribal-plugin.php
r2977885 r3019604 17 17 * Plugin URI: thetechtribe.com 18 18 * Description: This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc. 19 * Version: 1. 2.219 * Version: 1.3.0 20 20 * Author: The Tech Tribe 21 21 * Author URI: https://thetechtribe.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1. 2.2' );38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3.0' ); 39 39 40 40 //date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset
for help on using the changeset viewer.