mirror of
https://github.com/rlanvin/php-rrule.git
synced 2024-11-29 06:24:10 +01:00
144 lines
2.7 KiB
PHP
144 lines
2.7 KiB
PHP
#!/usr/bin/env php
|
|
<?php declare(strict_types=1);
|
|
|
|
use RRule\RRule;
|
|
|
|
require(__DIR__ . '/../vendor/autoload.php');
|
|
|
|
$args = array_merge([
|
|
'locale' => null,
|
|
'rule' => null,
|
|
],getopt('h',[
|
|
'locale:',
|
|
'rule:',
|
|
'help'
|
|
])
|
|
);
|
|
|
|
function display_usage() {
|
|
echo <<<EOF
|
|
Usage:
|
|
--locale <locale> will output a set of example rules in one locale (default: en)
|
|
--rule <rule> will output a given rules in all available locales
|
|
EOF;
|
|
}
|
|
|
|
if (isset($args['h']) || isset($args['help'])) {
|
|
display_usage();
|
|
exit();
|
|
}
|
|
|
|
if (($args['locale'] && $args['rule']) || (!$args['locale'] && !$args['rule'])) {
|
|
echo "Error: choose either --locale or --rule\n";
|
|
display_usage();
|
|
exit(1);
|
|
}
|
|
|
|
// display all the rules in one locale
|
|
if ($args['locale']) {
|
|
$rules = array(
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'INTERVAL' => 1,
|
|
'DTSTART' => '2015-06-01',
|
|
'COUNT' => 6
|
|
),
|
|
array(
|
|
'FREQ' => 'MONTHLY',
|
|
'INTERVAL' => 3,
|
|
'DTSTART' => date_create('1997-01-01')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 2,
|
|
'BYDAY' => 'TU',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 2,
|
|
'BYDAY' => 'TU',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 2,
|
|
'BYDAY' => 'TU,FR',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 1,
|
|
'BYDAY' => 'TU',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 1,
|
|
'BYDAY' => 'TU',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'YEARLY',
|
|
'COUNT' => 1,
|
|
'BYDAY' => 'TU',
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'HOURLY',
|
|
'COUNT' => 1,
|
|
'BYHOUR' => [21,22],
|
|
'BYMINUTE' => [10,20,30],
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'MINUTELY',
|
|
'COUNT' => 1,
|
|
'BYHOUR' => 21,
|
|
'BYMINUTE' => 01,
|
|
'DTSTART' => date_create('1997-09-02 09:00')
|
|
),
|
|
array(
|
|
'FREQ' => 'MINUTELY',
|
|
'BYHOUR' => 21,
|
|
'BYMINUTE' => 10,
|
|
),
|
|
array(
|
|
'FREQ' => 'SECONDLY',
|
|
'BYHOUR' => 21,
|
|
'BYMINUTE' => 10,
|
|
'BYSECOND' => 10,
|
|
),
|
|
);
|
|
|
|
foreach ($rules as $index => $definition) {
|
|
$rrule = new RRule($definition);
|
|
printf(
|
|
"#%d\t%s\n",
|
|
$index,
|
|
$rrule->humanReadable(['locale' => $args['locale']])
|
|
);
|
|
}
|
|
|
|
exit();
|
|
}
|
|
|
|
// display all the locales for one rule
|
|
if ($args['rule']) {
|
|
$rrule = new RRule($args['rule']);
|
|
$locales = glob(__DIR__."/../src/i18n/*.php");
|
|
|
|
foreach ($locales as $locale) {
|
|
$locale = basename($locale,'.php');
|
|
printf(
|
|
"%s\t%s\n",
|
|
$locale,
|
|
$rrule->humanReadable(['locale' => $locale])
|
|
);
|
|
}
|
|
exit();
|
|
}
|
|
|
|
// should never reach this
|
|
display_usage();
|
|
exit(1); |