Changeset 3198166
- Timestamp:
- 11/27/2024 01:10:26 PM (16 months ago)
- Location:
- genoo/trunk
- Files:
-
- 4 edited
-
Genoo.php (modified) (1 diff)
-
libs/WPMKTENGINE/RepositoryPages.php (modified) (2 diffs)
-
libs/WPMKTENGINE/TablePages.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
genoo/trunk/Genoo.php
r3196959 r3198166 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 6.0.1 38 Version: 6.0.14 9 9 License: GPLv2 10 10 Text Domain: genoo -
genoo/trunk/libs/WPMKTENGINE/RepositoryPages.php
r2761864 r3198166 56 56 57 57 /** 58 * Flag to notify pages table about sync failure 59 */ 60 public $syncFailed; 61 62 /** 58 63 * Directory Key map 59 64 */ … … 112 117 } catch (\Exception $e) { 113 118 } 114 return $prepForms; 119 $this->syncFailed = !is_array($prepForms); 120 return $this->syncFailed ? [] : $prepForms; 115 121 } 116 122 -
genoo/trunk/libs/WPMKTENGINE/TablePages.php
r2761864 r3198166 591 591 * No Items notices 592 592 */ 593 function no_items(){ echo __('There are no Pages created in your account.', 'wpmktengine'); } 593 function no_items(){ 594 if ($this->repositoryPages->syncFailed) { 595 echo __('<b>Sync failed. Please retry.</b>', 'wpmktengine'); 596 } else { 597 echo __('There are no Pages created in your account.', 'wpmktengine'); 598 } 599 } 594 600 595 601 /** -
genoo/trunk/readme.txt
r3196959 r3198166 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Stable tag: 6.0.1 38 Stable tag: 6.0.14 9 9 10 10 Combine the flexibility of WordPress with the power of Genoo and experience amazing results!
Note: See TracChangeset
for help on using the changeset viewer.