|
|
| 18 |
* |
18 |
* |
| 19 |
*/ |
19 |
*/ |
| 20 |
|
20 |
|
| 21 |
// $Id: SchedConf.inc.php,v 1.24 2009/12/02 07:01:03 jerico.dev Exp $ |
21 |
// $Id: SchedConf.inc.php,v 1.25 2010/01/25 18:19:41 asmecher Exp $ |
| 22 |
|
22 |
|
| 23 |
|
23 |
|
| 24 |
define('SCHED_CONF_DATE_YEAR_OFFSET_FUTURE', '+2'); |
24 |
define('SCHED_CONF_DATE_YEAR_OFFSET_FUTURE', '+2'); |
|
|
| 82 |
* Get the localized title of the scheduled conference |
82 |
* Get the localized title of the scheduled conference |
| 83 |
* @return string |
83 |
* @return string |
| 84 |
*/ |
84 |
*/ |
| 85 |
function getSchedConfTitle() { |
85 |
function getLocalizedTitle() { |
| 86 |
return $this->getLocalizedSetting('title'); |
86 |
return $this->getLocalizedSetting('title'); |
| 87 |
} |
87 |
} |
| 88 |
|
88 |
|
|
|
89 |
function getSchedConfTitle() { |
| 90 |
if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); |
| 91 |
return $this->getLocalizedTitle(); |
| 92 |
} |
| 93 |
|
| 89 |
/** |
94 |
/** |
| 90 |
* Get title of scheduled conference |
95 |
* Get title of scheduled conference |
| 91 |
* @param $locale string |
96 |
* @param $locale string |