Changeset 1482971
- Timestamp:
- 08/25/2016 12:01:26 AM (10 years ago)
- Location:
- recent-topics-for-ipboard/tags/1.0.0
- Files:
-
- 3 edited
-
helpers/widget.php (modified) (3 diffs)
-
ipbrecent.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recent-topics-for-ipboard/tags/1.0.0/helpers/widget.php
r1441522 r1482971 13 13 { 14 14 protected $params; 15 p ublic$label;16 p ublic$basedir;17 p ublic$basename;15 protected $label; 16 protected $basedir; 17 protected $basename; 18 18 19 19 public function __construct() … … 21 21 global $ipbrecent; 22 22 23 $this->label = $ipbrecent-> label;24 $this->basedir = $ipbrecent-> basedir;25 $this->basename = $ipbrecent-> basename;23 $this->label = $ipbrecent->get('label'); 24 $this->basedir = $ipbrecent->get('basedir'); 25 $this->basename = $ipbrecent->get('basename'); 26 26 27 27 parent::__construct($this->label, __('IP.Board Recent Topics', $this->label), array('description' => __('Displays recent topics list from IPS Community Suite (former IP.Board) based forum.', $this->label))); … … 65 65 { 66 66 return isset($this->params[$name]) ? $this->params[$name] : $default; 67 } 67 } 68 68 } 69 69 -
recent-topics-for-ipboard/tags/1.0.0/ipbrecent.php
r1441522 r1482971 17 17 class IPBRecent 18 18 { 19 p ublic $debug = true;20 p ublic $label = 'ipbrecent';21 p ublic $basedir;22 p ublic $basename;23 p ublic $params;19 protected $label = 'ipbrecent'; 20 protected $basedir; 21 protected $basename; 22 protected $params; 23 protected $debug = false; 24 24 25 25 public function __construct() … … 397 397 { 398 398 return isset($this->params[$name]) ? $this->params[$name] : $default; 399 } 399 } 400 401 public function get($variable) 402 { 403 return $this->{$variable}; 404 } 400 405 } 401 406 -
recent-topics-for-ipboard/tags/1.0.0/readme.txt
r1441541 r1482971 5 5 Tags: forum, forum bridge, ipboard, ips community suite, recent topics, forum topics 6 6 Requires at least: 4.0 7 Tested up to: 4. 5.27 Tested up to: 4.6 8 8 Stable tag: 1.0.0 9 9 License: GPLv2 or later … … 59 59 2. Database settings. 60 60 3. Layout settings. 61 4. More layout settings.62 61 63 62 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.