File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/modules/default/blocks/Debug.php
<?php
/**
* Debug block.
*
* @package seagull
* @subpackage block
* @author Demian Turner <demian@phpkitchen.com>
* @version $Revision: 1.1 $
*/
class Default_Block_Debug
{
var $webRoot = SGL_BASE_URL;
function init()
{
return $this->getBlockContent();
}
function getBlockContent()
{
$url = SGL_Output::makeUrl('', 'maintenance', 'default');
$text = <<< HTML
<form name="rebuildSeagull" method="post" action="$url" id="rebuildSeagull">
<p class="center">
<input type="hidden" name="action" value="rebuildSeagull" />
<input type="submit" class="sgl-button"name="submit" value="Rebuild Seagull" /><br />
<input type="checkbox" name="frmSampleData" id="sampleData" value="1" />
<label for="sampleData">with sample data</label>
</p>
</form>
HTML;
return $text;
}
}
?>