Changeset 1419819
- Timestamp:
- 05/18/2016 05:42:57 PM (10 years ago)
- Location:
- hookit-related-products
- Files:
-
- 44 added
- 4 edited
-
tags/0.6.1 (added)
-
tags/0.6.1/admin (added)
-
tags/0.6.1/admin/actions.php (added)
-
tags/0.6.1/admin/functions.php (added)
-
tags/0.6.1/admin/metabox.php (added)
-
tags/0.6.1/admin/settings.php (added)
-
tags/0.6.1/admin/tool.php (added)
-
tags/0.6.1/admin/views (added)
-
tags/0.6.1/admin/views/header.php (added)
-
tags/0.6.1/admin/views/metabox.php (added)
-
tags/0.6.1/admin/views/settings.php (added)
-
tags/0.6.1/admin/views/tool.php (added)
-
tags/0.6.1/assets (added)
-
tags/0.6.1/assets/css (added)
-
tags/0.6.1/assets/css/admin.css (added)
-
tags/0.6.1/assets/css/hookit-icon.css (added)
-
tags/0.6.1/assets/css/multi-select.css (added)
-
tags/0.6.1/assets/css/style.css (added)
-
tags/0.6.1/assets/fonts (added)
-
tags/0.6.1/assets/fonts/hookit-icon.eot (added)
-
tags/0.6.1/assets/fonts/hookit-icon.svg (added)
-
tags/0.6.1/assets/fonts/hookit-icon.ttf (added)
-
tags/0.6.1/assets/fonts/hookit-icon.woff (added)
-
tags/0.6.1/assets/img (added)
-
tags/0.6.1/assets/img/sign.png (added)
-
tags/0.6.1/assets/img/switch.png (added)
-
tags/0.6.1/assets/js (added)
-
tags/0.6.1/assets/js/jquery.multi-select.js (added)
-
tags/0.6.1/assets/js/script.js (added)
-
tags/0.6.1/assets/js/tool.js (added)
-
tags/0.6.1/hookit-recommended-products.php (added)
-
tags/0.6.1/includes (added)
-
tags/0.6.1/includes/actions.php (added)
-
tags/0.6.1/includes/filters.php (added)
-
tags/0.6.1/includes/functions.php (added)
-
tags/0.6.1/index.php (added)
-
tags/0.6.1/init.php (added)
-
tags/0.6.1/languages (added)
-
tags/0.6.1/languages/hookit-recommended-products-pt_BR.mo (added)
-
tags/0.6.1/languages/hookit-recommended-products-pt_BR.po (added)
-
tags/0.6.1/languages/hookit-recommended-products.pot (added)
-
tags/0.6.1/readme.txt (added)
-
tags/0.6.1/views (added)
-
tags/0.6.1/views/recommended-products.php (added)
-
trunk/hookit-recommended-products.php (modified) (1 diff)
-
trunk/includes/filters.php (modified) (2 diffs)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hookit-related-products/trunk/hookit-recommended-products.php
r1419216 r1419819 3 3 /** 4 4 * Plugin Name: Hookit Recommended Products 5 * Version: 0.6. 05 * Version: 0.6.1 6 6 * Plugin URI: https://bitbucket.org/edpittol/hookit-recommended-products 7 7 * Description: WordPress plugin to get Hookit related products from a post -
hookit-related-products/trunk/includes/filters.php
r1411753 r1419819 5 5 /** 6 6 * Show recommended products in the footer of the post in the singular page. 7 * Send a ping to server to sinalize that the recommended posts is loading. 7 8 * 8 9 * @param string $content The post content. … … 11 12 if( is_singular() ) { 12 13 ob_start(); 14 hookit_recommended_products_consume_ws( 'ping' ); 13 15 require __DIR__ . '/../views/recommended-products.php'; 14 16 $content .= ob_get_clean(); -
hookit-related-products/trunk/includes/functions.php
r1419216 r1419819 130 130 * @return WP_Error|string A JSON with the result of the call. A WP_Error if the Web Service return a error. 131 131 */ 132 function hookit_recommended_products_consume_ws( $service, $body ) {132 function hookit_recommended_products_consume_ws( $service, $body = array() ) { 133 133 $curl = curl_init(); 134 134 -
hookit-related-products/trunk/readme.txt
r1419216 r1419819 34 34 35 35 == Changelog == 36 37 = 0.6.1 = 38 * Fix: Corrigida conexão com Web Service 36 39 37 40 = 0.6.0 =
Note: See TracChangeset
for help on using the changeset viewer.