From 89ba83d42fa8704c32db54cfd97e02af0bf9faad Mon Sep 17 00:00:00 2001 From: urs_hunkler Date: Sun, 10 Jun 2007 17:08:17 +0000 Subject: [PATCH] MDL-9977 and MDL-8446 - sheet setting depending on $CFG->langdirection. Due to big problems I added debug messages. --- theme/custom_corners/config.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/theme/custom_corners/config.php b/theme/custom_corners/config.php index 3cce51cdc2..69d2ee4cce 100644 --- a/theme/custom_corners/config.php +++ b/theme/custom_corners/config.php @@ -5,8 +5,20 @@ /// how Moodle uses this theme. //////////////////////////////////////////////////////////////////////////////// +trigger_error('custom_corners/config.php - $CFG->langdirection: '.$CFG->langdirection, E_USER_NOTICE); + +if ($CFG->langdirection == 'rtl') { + $THEME->sheets = array('user_styles', 'styles_rtl'); + trigger_error('custom_corners/config.php - is rtl ::: ', E_USER_NOTICE); +} else { + $THEME->sheets = array('user_styles'); + trigger_error('custom_corners/config.php - is not rtl ::: ', E_USER_NOTICE); +} + +trigger_error('custom_corners/config.php - $THEME->sheets: '.$THEME->sheets[0].', '.$THEME->sheets[1], E_USER_NOTICE); + +// $THEME->sheets = array('user_styles'); -$THEME->sheets = array('user_styles'); // $THEME->sheets = array('user_styles', 'adminpage_correct'); /// This variable is an array containing the names of all the -- 2.39.5