0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/Calendar/Dashlets/CalendarDashlet/CalendarDashlet.php
2023-07-18 15:53:09 +01:00

163 lines
5.4 KiB
PHP
Executable File

<?php
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
require_once('modules/Calendar/Calendar.php');
require_once('include/Dashlets/Dashlet.php');
#[\AllowDynamicProperties]
class CalendarDashlet extends Dashlet
{
public $view = 'week';
/**
* CalendarDashlet constructor.
* @param $id string
* @param $def array
*/
public function __construct($id, $def)
{
$this->loadLanguage('CalendarDashlet', 'modules/Calendar/Dashlets/');
parent::__construct($id);
$this->isConfigurable = true;
$this->hasScript = true;
if (empty($def['title'])) {
$this->title = $this->dashletStrings['LBL_TITLE'];
} else {
$this->title = $def['title'];
}
if (!empty($def['view'])) {
$this->view = $def['view'];
}
// seedBean is need to set the calendar icon
if ($this->seedBean = BeanFactory::newBean('Calendar')) {
$this->seedBean->module_name = 'Calendar';
} else {
$GLOBALS['log']->warn('Calendar bean not created');
}
}
/**
* @see Dashlet::display()
*/
public function display()
{
ob_start();
if (isset($GLOBALS['cal_strings'])) {
return parent::display() . "Only one Calendar dashlet is allowed.";
}
require_once('modules/Calendar/Calendar.php');
require_once('modules/Calendar/CalendarDisplay.php');
require_once("modules/Calendar/CalendarGrid.php");
global $cal_strings, $current_language;
$cal_strings = return_module_language($current_language, 'Calendar');
if (!ACLController::checkAccess('Calendar', 'list', true)) {
ACLController::displayNoAccess(true);
}
$cal = new Calendar($this->view);
$cal->dashlet = true;
$cal->add_activities($GLOBALS['current_user']);
$cal->load_activities();
$display = new CalendarDisplay($cal, $this->id);
$display->display_calendar_header(false);
$display->display();
$str = ob_get_contents();
ob_end_clean();
return parent::display() . $str;
}
/**
* @see Dashlet::displayOptions()
*/
public function displayOptions()
{
global $app_strings, $mod_strings;
$ss = new Sugar_Smarty();
$ss->assign('MOD', $this->dashletStrings);
$ss->assign('titleLbl', $this->dashletStrings['LBL_CONFIGURE_TITLE']);
$ss->assign('saveLbl', $app_strings['LBL_SAVE_BUTTON_LABEL']);
$ss->assign('configureView', $this->dashletStrings['LBL_CONFIGURE_VIEW']);
$ss->assign('viewDay', $this->dashletStrings['LBL_VIEW_DAY']);
$ss->assign('viewWeek', $this->dashletStrings['LBL_VIEW_WEEK']);
$ss->assign('MOD', $this->dashletStrings);
$ss->assign('title', $this->title);
$ss->assign('view', $this->view);
$ss->assign('id', $this->id);
return parent::displayOptions() .
$ss->fetch('modules/Calendar/Dashlets/CalendarDashlet/CalendarDashletOptions.tpl');
}
/**
* @param $req array
* @return array
*/
public function saveOptions($req)
{
$options = array();
$options['title'] = $req['title'];
$options['view'] = $req['view'];
return $options;
}
public function displayScript()
{
return '';
}
}