Changeset 1805461
- Timestamp:
- 01/18/2018 11:33:37 PM (8 years ago)
- Location:
- catablog/trunk
- Files:
-
- 6 edited
-
catablog.php (modified) (1 diff)
-
lib/CataBlog.class.php (modified) (2 diffs)
-
lib/CataBlogGallery.class.php (modified) (1 diff)
-
lib/CataBlogItem.class.php (modified) (1 diff)
-
lib/CataBlogWidget.class.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
catablog/trunk/catablog.php
r1033448 r1805461 4 4 Plugin URI: http://catablog.illproductions.com/ 5 5 Description: CataBlog is a comprehensive and effortless tool that helps you create, organize and share catalogs, stores, galleries and portfolios on your blog. 6 Version: 1.6. 66 Version: 1.6.7 7 7 Author: Zachary Segal 8 8 Author URI: http://catablog.illproductions.com/about/ -
catablog/trunk/lib/CataBlog.class.php
r1033448 r1805461 5 5 * This file contains the core class for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6. 67 * @version 1.6.7 8 8 * @package catablog 9 9 */ … … 19 19 20 20 // plugin version number and blog url 21 private $version = "1.6. 6";21 private $version = "1.6.7"; 22 22 private $blog_url = 'http://catablog.illproductions.com/'; 23 23 private $debug = false; -
catablog/trunk/lib/CataBlogGallery.class.php
r1033448 r1805461 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6. 67 * @version 1.6.7 8 8 * @package catablog 9 9 */ -
catablog/trunk/lib/CataBlogItem.class.php
r1033448 r1805461 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6. 67 * @version 1.6.7 8 8 * @package catablog 9 9 */ -
catablog/trunk/lib/CataBlogWidget.class.php
r1033448 r1805461 5 5 * This file contains the widget classes for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6. 67 * @version 1.6.7 8 8 * @package catablog 9 9 */ … … 11 11 class CataBlogWidget extends WP_Widget { 12 12 13 function CataBlogWidget() {13 function __construct() { 14 14 $widget_ops = array('classname' => 'CataBlogWidget', 'description' => __("Entries from your CataBlog Library", "catablog") ); 15 $this->WP_Widget('CataBlogWidget', __("CataBlog Catalog", "catablog"), $widget_ops);15 parent::__construct('CataBlogWidget', __("CataBlog Catalog", "catablog"), $widget_ops); 16 16 } 17 17 … … 236 236 class CataBlogCategoryWidget extends WP_Widget { 237 237 238 function CataBlogCategoryWidget() {238 function __construct() { 239 239 $widget_ops = array('classname' => 'CataBlogCategoryWidget', 'description' => __("Categories from your CataBlog Library", "catablog") ); 240 $this->WP_Widget('CataBlogCategoryWidget', __("CataBlog Categories", "catablog"), $widget_ops);240 parent::__construct('CataBlogCategoryWidget', __("CataBlog Categories", "catablog"), $widget_ops); 241 241 } 242 242 -
catablog/trunk/readme.txt
r1317687 r1805461 4 4 Tags: plugin, admin, image, images, posts, Post, widget, links, catalog, gallery, portfolio, product catalog, discography, library, collection, store, organize, media, photo, thumbnail, product, listing, list, BuddyPress, ecommerce 5 5 Requires at least: 3.3 6 Tested up to: 4. 46 Tested up to: 4.9.2 7 7 Stable tag: 1.6.6 8 8 … … 103 103 104 104 == Changelog == 105 106 = 1.6.7 = 107 * Fix: Use PHP5 syntax to define CataBlogWidget's constructor method 105 108 106 109 = 1.6.6 =
Note: See TracChangeset
for help on using the changeset viewer.