50 lines
1.5 KiB
PHP
Executable File
50 lines
1.5 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/**
|
|
* Copyright 2005-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
*/
|
|
|
|
if (file_exists(__DIR__ . '/../../nag/lib/Application.php')) {
|
|
$baseDir = __DIR__ . '/../';
|
|
} else {
|
|
require_once 'PEAR/Config.php';
|
|
$baseDir = PEAR_Config::singleton()
|
|
->get('horde_dir', null, 'pear.horde.org') . '/nag/';
|
|
}
|
|
require_once $baseDir . 'lib/Application.php';
|
|
Horde_Registry::appInit('nag', array('cli' => true));
|
|
|
|
$history = $GLOBALS['injector']->getInstance('Horde_History');
|
|
|
|
// Run through every tasklist.
|
|
$tasklists = $nag_shares->listAllShares();
|
|
foreach ($tasklists as $tasklist => $share) {
|
|
$cli->writeln("Creating default histories for $tasklist ...");
|
|
|
|
// List all tasks.
|
|
$storage = $GLOBALS['injector']->getInstance('Nag_Factory_Driver')->create($tasklist);
|
|
$storage->retrieve();
|
|
$tasks = $storage->listTasks();
|
|
|
|
foreach ($tasks as $taskId => $task) {
|
|
$log = $history->getHistory('nag:' . $tasklist . ':' . $task['uid']);
|
|
$created = false;
|
|
foreach ($log as $entry) {
|
|
if ($entry['action'] == 'add') {
|
|
$created = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!$created) {
|
|
$history->log('nag:' . $tasklist . ':' . $task['uid'], array('action' => 'add'), true);
|
|
}
|
|
}
|
|
}
|
|
|
|
$cli->writeln("** Default histories successfully created ***");
|