Changeset 1554301
- Timestamp:
- 12/14/2016 08:27:59 AM (9 years ago)
- Location:
- pricemesh/trunk
- Files:
-
- 3 edited
-
pricemesh.php (modified) (1 diff)
-
public/pricemesh-public.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pricemesh/trunk/pricemesh.php
r1494217 r1554301 4 4 Plugin URI: https://www.pricemesh.io/plugins/wordpress/ 5 5 Description: Extend WordPress with your own price comparison | WordPress um einen eigenen Preisvergleich erweitern. 6 Version: 1.6. 86 Version: 1.6.9 7 7 Author: pricemesh 8 8 Author URI: https://www.pricemesh.io -
pricemesh/trunk/public/pricemesh-public.php
r1494217 r1554301 22 22 * @var string 23 23 */ 24 const VERSION = '1.6. 8';24 const VERSION = '1.6.9'; 25 25 26 26 /** … … 474 474 class PricemeshWidget extends WP_Widget{ 475 475 476 function PricemeshWidget(){ 477 $widget_ops = array('classname' => 'PricemeshWidget', 'description' => 'Zur Anzeige des Preisvergleichs als Widget.' ); 478 $this->WP_Widget('PricemeshWidget', 'Pricemesh Widget', $widget_ops); 479 } 476 function __construct(){ 477 $widget_ops = array('classname' => 'PricemeshWidget', 'description' => 'Zur Anzeige des Preisvergleichs als Widget.' ); 478 parent::__construct( 'PricemeshWidget', 'PricemeshWidget', $widget_ops ); 479 } 480 //function PricemeshWidget(){ 481 // $widget_ops = array('classname' => 'PricemeshWidget', 'description' => 'Zur Anzeige des Preisvergleichs als Widget.' ); 482 // $this->WP_Widget('PricemeshWidget', 'Pricemesh Widget', $widget_ops); 483 //} 480 484 481 485 function form($instance){ -
pricemesh/trunk/readme.txt
r1494217 r1554301 3 3 Tags: affiliate, commerce, e-commerce, pricemesh, price compare, price comparison, ecommerce, sales, sell, shop, shopping, widgets, wordpress ecommerce, amazon, preisvergleich, ads, advertising 4 4 Requires at least: 3.4 5 Tested up to: 4. 6.16 Stable tag: 1.6. 85 Tested up to: 4.7.0 6 Stable tag: 1.6.9 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.