aowow/setup/tools/filegen/robots.ss.php
Sarjuuk 0d645334cb Sitemap
* generate and link basic sitemap
2026-03-05 12:31:07 +01:00

24 lines
475 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(
'robots' => [[], CLISetup::ARGV_PARAM, 'Fills robots.txt with site variables.']
);
protected $fileTemplateSrc = ['robots.txt.in'];
protected $fileTemplateDest = ['robots.txt']; // aowow root
});
?>