D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
share
/
doc
/
cpanel-php83-date-holidays
/
examples
/
Filename :
addingTranslations.php
back
Copy
<?php /** * Example that shows how to get localized holiday titles * * PHP Version 5 * * @category Date * @package Date_Holidays * @author Carsten Lucke <luckec@tool-garage.de> * @license http://www.php.net/license/3_01.txt PHP License 3.0.1 * @link http://pear.php.net/package/Date_Holidays */ require_once 'Date/Holidays.php'; /** * Set static property concerning the behaviour when translations for a * holiday-title is missing * * If DIE_ON_MISSING_LOCALE is true, you will get an error if you request a * holiday/ holiday-title. * If this is set false, the driver's internal default title (English) will be * returned. When you are using another locale-setting than English, you could * get mixed translations. * Default this option is set true. */ Date_Holidays::staticSetProperty('DIE_ON_MISSING_LOCALE', true); /** * Create a driver object using the factory method * * You must determine a valid driver-name. * If you don't specify a locale, your system's locale will be used. * If you don't specify a year, the current one will be used. */ $germany = Date_Holidays::factory('Germany', 2004, 'fr_FR'); if (Date_Holidays::isError($germany)) { die('Factory was unable to produce driver-object'); } // translations for the christian holidays $langer = '/var/lib/pear/data/Date_Holidays/lang'; $germany->addTranslationFile($langer . '/Christian/de_DE.xml', 'de_DE'); $germany->addTranslationFile($langer . '/Christian/en_EN.xml', 'en_EN'); $germany->addTranslationFile($langer . '/Christian/fr_FR.xml', 'fr_FR'); // translations for the german holidays $germany->addCompiledTranslationFile($langer . '/Germany/de_DE.ser', 'de_DE'); $germany->addCompiledTranslationFile($langer . '/Germany/en_EN.ser', 'en_EN'); $germany->addCompiledTranslationFile($langer . '/Germany/fr_FR.ser', 'fr_FR'); $easter = $germany->getHoliday('easter'); if (Date_Holidays::isError($easter)) { echo '<pre> Error: '; print_r($easter); echo '</pre>'; } else { echo '<pre> easter with driver\'s locale: '; print_r($easter->toArray()); echo '</pre>'; } $easter = $germany->getHoliday('easter', 'de'); if (Date_Holidays::isError($easter)) { echo '<pre> Error: '; print_r($easter); echo '</pre>'; } else { echo '<pre> easter with German locale: '; print_r($easter->toArray()); echo '</pre>'; } ?>
Name
Size
Last Modified
Owner
Permissions
Actions
addingTranslations.php
2.31
KB
February 17 2025 11:04:01
root
0644
creating_drivers.php
3.656
KB
February 17 2025 11:04:01
root
0644
fetchingInstalledDrivers.php
0.523
KB
February 17 2025 11:04:01
root
0644
languagefile-with-properties.xml
0.43
KB
February 17 2025 11:04:01
root
0644
usingCompositeDriver.php
3.905
KB
February 17 2025 11:04:01
root
0644
usingStandaloneDriver.php
3.288
KB
February 17 2025 11:04:01
root
0644
2017 © D7net | D704T team