Changeset 1764741
- Timestamp:
- 11/13/2017 07:26:29 AM (8 years ago)
- Location:
- trigger-happy
- Files:
-
- 6 edited
-
tags/1.0/readme.txt (modified) (2 diffs)
-
tags/1.0/src/class-triggerhappy.php (modified) (1 diff)
-
tags/1.0/trigger-happy.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/class-triggerhappy.php (modified) (1 diff)
-
trunk/trigger-happy.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trigger-happy/tags/1.0/readme.txt
r1764650 r1764741 38 38 39 39 == Upgrade Notice == 40 Version 1.0 40 Version 1.0.1 is available 41 41 42 42 == Frequently Asked Questions == … … 72 72 == Changelog == 73 73 74 = 1.0.1 = 75 * Fixed loading issue in version 1 76 74 77 = 1.0 = 75 78 * First release -
trigger-happy/tags/1.0/src/class-triggerhappy.php
r1764661 r1764741 96 96 * Load nodes from Trigger Happy and third-party plugins 97 97 */ 98 98 99 public function load_nodes() { 99 100 require_once( dirname( __FILE__ ) . '/nodes/core.php' ); 100 require_once( dirname( __FILE__ ) . '/nodes/woocommerce.php' ); 101 require_once( dirname( __FILE__ ) . '/nodes/forms.php' ); 101 if ( class_exists( 'WooCommerce' ) ) { 102 require_once( dirname( __FILE__ ) . '/nodes/woocommerce.php' ); 103 } 104 if ( function_exists( 'Ninja_Forms' ) ) { 105 require_once( dirname( __FILE__ ) . '/nodes/forms.php' ); 106 } 102 107 } 103 108 -
trigger-happy/tags/1.0/trigger-happy.php
r1764650 r1764741 4 4 Plugin URI: http://hotsource.io/ 5 5 Description: Connect your plugins and automate your workflow with Trigger Happy - a powerful flow-based visual scripting and automation tool 6 Version: 1.0. 06 Version: 1.0.1 7 7 Text Domain: trigger-happy 8 8 */ -
trigger-happy/trunk/readme.txt
r1764649 r1764741 38 38 39 39 == Upgrade Notice == 40 Version 1.0 40 Version 1.0.1 is available 41 41 42 42 == Frequently Asked Questions == … … 72 72 == Changelog == 73 73 74 = 1.0.1 = 75 * Fixed loading issue in version 1 76 74 77 = 1.0 = 75 78 * First release -
trigger-happy/trunk/src/class-triggerhappy.php
r1764660 r1764741 96 96 * Load nodes from Trigger Happy and third-party plugins 97 97 */ 98 98 99 public function load_nodes() { 99 100 require_once( dirname( __FILE__ ) . '/nodes/core.php' ); 100 require_once( dirname( __FILE__ ) . '/nodes/woocommerce.php' ); 101 require_once( dirname( __FILE__ ) . '/nodes/forms.php' ); 101 if ( class_exists( 'WooCommerce' ) ) { 102 require_once( dirname( __FILE__ ) . '/nodes/woocommerce.php' ); 103 } 104 if ( function_exists( 'Ninja_Forms' ) ) { 105 require_once( dirname( __FILE__ ) . '/nodes/forms.php' ); 106 } 102 107 } 103 108 -
trigger-happy/trunk/trigger-happy.php
r1764649 r1764741 4 4 Plugin URI: http://hotsource.io/ 5 5 Description: Connect your plugins and automate your workflow with Trigger Happy - a powerful flow-based visual scripting and automation tool 6 Version: 1.0. 06 Version: 1.0.1 7 7 Text Domain: trigger-happy 8 8 */
Note: See TracChangeset
for help on using the changeset viewer.