Files
aowow/includes/class.worldevent.php
Sarjuuk e65315dd3c Implement Titles
and while doing so...
- decrypted listview.templates - achievemnts, quests, titles
- removed ancient hacks for Opera from JS wich prevented capturing of some Key/Mouse-Events in Opera

Pease note, that the CharTitles.dbc alone doesn't provide enough data to generate these pages.
The script to generate ?_titles and ?_sourceStrings will be provided soon [TM]
2013-01-20 00:56:58 +01:00

18 lines
292 B
PHP

<?php
if (!defined('AOWOW_REVISION'))
die('illegal access');
class WorldEvent
{
public static function getName($id)
{
$row = DB::Aowow()->SelectRow('SELECT * FROM ?_holidays WHERE Id = ?d', intVal($id));
return Util::localizedString($row, 'name');
}
}
?>