Thanks Steve. It works, with caveats, see below.
For those who may have been following this thread, passing the setting to the MySQL session via
(on conf/ApplicationDelegate.php)
- Code: Select all
class conf_ApplicationDelegate {
//...other stuff
function beforeHandleRequest(){
$app = Dataface_Application::getInstance();
$query_lc = "SET @@lc_time_names = 'es_ES'";
$result_lc = mysql_query($query_lc, df_db());
//...
}
//...
}
works, but only sets the output to whatever locale you choose when the output is managed by MySQL's date format functions. When using php's format functions this setting is of little value. (obvious in hindsight, but not on my first rookie attempt...)
Next step is to try to complete the circle via php's setlocale() and will eventually revert here.