for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/******************************************************************************
* Wikipedia Account Creation Assistance tool *
* ACC Development Team. Please see team.json for a list of contributors. *
* *
* This is free and unencumbered software released into the public domain. *
* Please see LICENSE.md for the full licencing statement. *
******************************************************************************/
namespace Waca\Fragments;
use Waca\Helpers\MarkdownRenderingHelper;
trait PrivacyStatement
{
protected abstract function assign($name, $value);
protected abstract function templatePath();
protected abstract function setTemplate($name);
protected abstract function getSiteConfiguration();
protected function main()
$path = $this->getSiteConfiguration()->getPrivacyStatementPath();
$markdown = file_get_contents($path);
$renderer = new MarkdownRenderingHelper();
$this->assign('content', $renderer->doRender($markdown));
$this->setTemplate($this->templatePath());
}