for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Formularium\Frontend\Buefy;
use Formularium\HTMLElement;
class Framework extends \Formularium\Framework
{
public function __construct(string $name = 'Buefy')
parent::__construct($name);
}
public function htmlHead(HTMLElement &$head)
$head->appendContent(
HTMLElement::factory('meta', ['name' => "viewport", 'content' => "width=device-width, initial-scale=1"])
)->appendContent(
HTMLElement::factory(
'link',
[
'rel' => "stylesheet",
'href' => "https://unpkg.com/buefy/dist/buefy.min.css",
]
)
'script',
'src' => "https://unpkg.com/buefy/dist/buefy.min.js",
);
public function viewableCompose(\Formularium\Model $m, array $elements, string $previousCompose): string
return $previousCompose;
public function editableCompose(\Formularium\Model $m, array $elements, string $previousCompose): string