Site Updates
Posted in Site Updates
1380
4:56 am, June 10, 2022
 

Site Widget Controls

Currently the widgets on this site, the things on the right hand side, are pretty much automatic and just load in as they please. 

Current Widget Load Process:

  1. Call widget class. 
  2. Add widget into format.
  3. Call Page
  4. Page calls widgets or adds widgets
  5. All widgets are displayed in the same order they are added to the widget class. 

View Page, adds widgets to existing widget list

What i would like to have happen:

  1. Call widget class
  2. have some default widgets called globally
  3. be able to override these widgets per page
  4. be able to order the widgets differently. 

How do we achieve this? 

I think this can be done with the current widget class. 

PHP - widget.class.php

<?php
/*
manage widgets for sidebar
*/
class widgets {

    public $widgets;
    public $template = "widget.html";
	
    public function __construct() {
    }

    function add($html) {
        $this->widgets[] = $html;
    }
    function sort() {
    	asort($this->widgets);
    }
    function show() {
        if(!is_array($this->widgets)) { return; }
    	$widgets_html = "";
    	$template = new template($this->template);
    	foreach ($this->widgets as $key => $html) {
            $template->set("html", $html);
    		$template->set("id", $key);
    		$widgets_html .= $template->output();
    	}
    	return $widgets_html;
    }

}


?>

HTML - widget.html

the html wrapper for the widget item

<div class='widget mb-3' id="w[@id]">
  [@html]
</div>

..

View Statistics
This Week
25
This Month
114
This Year
130

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Articles
Search Articles by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
For a long time it had seemed to me that life was about to begin - real life. But there was always some obstacle in the way, something to be gotten through first, some unfinished business, time still to be served, or a debt to be paid. Then life would begin. At last it dawned on me that these obstacles were my life.
Alfred D. Souza
Random CSS Property

border-bottom-left-radius

The border-bottom-left-radius CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
border-bottom-left-radius css reference