⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
View File Name :
nag-import-vtodos
#!/usr/bin/env php */ $baseFile = __DIR__ . '/../../nag/lib/Application.php'; if (file_exists($baseFile)) { require_once $baseFile; } else { require_once 'PEAR/Config.php'; require_once PEAR_Config::singleton() ->get('horde_dir', null, 'pear.horde.org') . '/nag/lib/Application.php'; } Horde_Registry::appInit('nag', array('cli' => true)); // Read command line parameters. if (count($argv) != 3) { $cli->message('Too many or too few parameters.', 'cli.error'); usage(); } $tasklist = $argv[1]; $user = $argv[2]; // Read standard input. $vtodo = $cli->readStdin(); if (empty($vtodo)) { $cli->message('No import data provided.', 'cli.error'); usage(); } // Set user. $registry->setAuth($user, array()); // Import data. try { $result = $registry->tasks->import($vtodo, 'text/calendar', $tasklist); } catch (Horde_Exception $e) { $cli->fatal($result->toString()); } $cli->message('Imported successfully ' . count($result) . ' tasks', 'cli.success'); function usage() { $GLOBALS['cli']->writeln('Usage: nag-import-vtodos tasklist user'); exit; }