Files
aowow/setup/tools/filegen/searchplugin.ss.php
Sarjuuk 3a6c86092b Core/Compat
* create namespace Aowow to avoid naming conflicts
 * inclues/libs/ is outside of the Aowow namespace
2025-04-01 22:32:37 +02:00

26 lines
612 B
PHP

<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
if (!CLI)
die('not in cli mode');
CLISetup::registerSetup("build", new class extends SetupScript
{
use TrTemplateFile;
protected $info = array(
'searchplugin' => [[], CLISetup::ARGV_PARAM, 'Fills browser opensearch plugin (static/download/searchplugins/aowow.xml) with site variables.']
);
protected $fileTemplateSrc = ['aowow.xml.in'];
protected $fileTemplateDest = ['static/download/searchplugins/aowow.xml'];
protected $requiredDirs = ['static/download/searchplugins/'];
});
?>