This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/block.php

98 lines
2.2 KiB
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
2014-04-29 05:33:03 +00:00
2009-07-19 07:38:13 +00:00
/**
2014-04-29 05:33:03 +00:00
* Class Block
*
* A basic chunk of a page.
*/
class Block
{
/**
* The block's title.
*/
public ?string $header;
2012-03-12 04:39:04 +00:00
/**
* The content of the block.
*/
public ?string $body;
2012-03-12 04:39:04 +00:00
/**
* Where the block should be placed. The default theme supports
* "main" and "left", other themes can add their own areas.
*/
public string $section;
2012-03-12 04:39:04 +00:00
/**
* How far down the section the block should appear, higher
* numbers appear lower. The scale is 0-100 by convention,
2020-01-26 23:12:48 +00:00
* though any number will work.
*/
public int $position;
/**
* A unique ID for the block.
*/
public string $id;
2012-03-12 04:39:04 +00:00
/**
* Should this block count as content for the sake of
* the 404 handler
*/
public bool $is_content = true;
public function __construct(string $header=null, string $body=null, string $section="main", int $position=50, string $id=null)
{
$this->header = $header;
$this->body = $body;
$this->section = $section;
$this->position = $position;
2017-08-24 09:17:39 +00:00
if (is_null($id)) {
2020-01-26 19:44:36 +00:00
$id = (empty($header) ? md5($body ?? '') : $header) . $section;
}
$str_id = preg_replace('/[^\w-]/', '', str_replace(' ', '_', $id));
assert(is_string($str_id));
$this->id = $str_id;
}
2012-03-12 04:39:04 +00:00
/**
* Get the HTML for this block.
*/
public function get_html(bool $hidable=false): string
{
$h = $this->header;
$b = $this->body;
$i = $this->id;
$html = "<section id='$i'>";
$h_toggler = $hidable ? " shm-toggler" : "";
if (!empty($h)) {
$html .= "<h3 data-toggle-sel='#$i' class='$h_toggler'>$h</h3>";
}
if (!empty($b)) {
$html .= "<div class='blockbody'>$b</div>";
}
$html .= "</section>\n";
return $html;
}
}
2009-07-19 07:38:13 +00:00
/**
2014-04-29 05:33:03 +00:00
* Class NavBlock
*
2009-07-19 07:38:13 +00:00
* A generic navigation block with a link to the main page.
*
* Used because "new NavBlock()" is easier than "new Block('Navigation', ..."
2014-04-29 05:33:03 +00:00
*
*/
class NavBlock extends Block
{
public function __construct()
{
parent::__construct("Navigation", "<a href='".make_link()."'>Index</a>", "left", 0);
}
}