From 0161fd5a88dedee9184dffe88fb66a9b261b7a99 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Wed, 2 Jul 2014 21:07:16 +0000 Subject: bug 3002: Two classes with the same name : Calendar git-svn-id: http://piwigo.org/svn/trunk@28926 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/calendar_monthly.class.php | 2 +- include/calendar_weekly.class.php | 2 +- include/functions_calendar.inc.php | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/include/calendar_monthly.class.php b/include/calendar_monthly.class.php index b9c845536..9ab38aee7 100644 --- a/include/calendar_monthly.class.php +++ b/include/calendar_monthly.class.php @@ -38,7 +38,7 @@ define('CDAY', 2); /** * Monthly calendar style (composed of years/months and days) */ -class Calendar extends CalendarBase +class CalendarMonthly extends CalendarBase { /** * Initialize the calendar. diff --git a/include/calendar_weekly.class.php b/include/calendar_weekly.class.php index d35e294b5..346f658d4 100644 --- a/include/calendar_weekly.class.php +++ b/include/calendar_weekly.class.php @@ -38,7 +38,7 @@ define('CDAY', 2); /** * Weekly calendar style (composed of years/week in years and days in week) */ -class Calendar extends CalendarBase +class CalendarWeekly extends CalendarBase { /** * Initialize the calendar diff --git a/include/functions_calendar.inc.php b/include/functions_calendar.inc.php index 30cdb0db0..850ccdccf 100644 --- a/include/functions_calendar.inc.php +++ b/include/functions_calendar.inc.php @@ -114,11 +114,13 @@ WHERE id IN (' . implode(',',$page['items']) .')'; 'monthly' => array( 'include' => 'calendar_monthly.class.php', 'view_calendar' => true, + 'classname' => 'CalendarMonthly', ), // Weekly style 'weekly' => array( 'include' => 'calendar_weekly.class.php', 'view_calendar' => false, + 'classname' => 'CalendarWeekly', ), ); @@ -133,9 +135,10 @@ WHERE id IN (' . implode(',',$page['items']) .')'; $page['chronology_style'] = 'monthly'; } $cal_style = $page['chronology_style']; + $classname = $styles[$cal_style]['classname']; + include(PHPWG_ROOT_PATH.'include/'. $styles[$cal_style]['include']); - // TODO : class name overlap, rename them in CalendarMonth and CalendarWeek - $calendar = new Calendar(); + $calendar = new $classname(); // Retrieve view -- cgit v1.2.3