mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
126 lines
5.3 KiB
PHP
Executable File
126 lines
5.3 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 - 2024 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');
|
|
}
|
|
|
|
#[\AllowDynamicProperties]
|
|
class SpotsViewEdit extends ViewEdit
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function display()
|
|
{
|
|
parent::display();
|
|
}
|
|
|
|
/**
|
|
* Return the "breadcrumbs" to display at the top of the page
|
|
*
|
|
* @param bool $show_help optional, true if we show the help links
|
|
* @return HTML string containing breadcrumb title
|
|
*/
|
|
public function getModuleTitle(
|
|
$show_help = true
|
|
) {
|
|
global $sugar_version, $sugar_flavor, $server_unique_key, $current_language, $action;
|
|
|
|
$theTitle = "<div class='moduleTitle'>\n";
|
|
|
|
$module = preg_replace("/ /", "", (string) $this->module);
|
|
|
|
$params = $this->_getModuleTitleParams();
|
|
$index = 0;
|
|
|
|
if (SugarThemeRegistry::current()->directionality == "rtl") {
|
|
$params = array_reverse($params);
|
|
}
|
|
if ((is_countable($params) ? count($params) : 0) > 1) {
|
|
array_shift($params);
|
|
}
|
|
$count = is_countable($params) ? count($params) : 0;
|
|
$paramString = '';
|
|
foreach ($params as $parm) {
|
|
$index++;
|
|
$paramString .= $parm;
|
|
if ($index < $count) {
|
|
$paramString .= $this->getBreadCrumbSymbol();
|
|
}
|
|
}
|
|
|
|
if (!empty($paramString)) {
|
|
$theTitle .= "<h2> $paramString </h2>";
|
|
|
|
if (!empty($this->bean->id)) {
|
|
$theTitle .= "<div class='favorite' record_id='" . $this->bean->id . "' module='" . $this->bean->module_dir . "'><div class='favorite_icon_outline' title='" . translate('LBL_MARK_FAVORITE', 'Favorites') . "'>" . SugarThemeRegistry::current()->getImage('favorite-star-outline', 'border="0" align="absmiddle"', null, null, '.gif', translate('LBL_MARK_FAVORITE', 'Favorites')) . "</div>
|
|
<div class='favorite_icon_fill' title='" . translate('LBL_UNMARK_FAVORITE', 'Favorites') . "'>" . SugarThemeRegistry::current()->getImage('favorite-star', 'border="0" align="absmiddle"', null, null, '.gif', translate('LBL_UNMARK_FAVORITE', 'Favorites')) . "</div></div>";
|
|
}
|
|
}
|
|
|
|
// bug 56131 - restore conditional so that link doesn't appear where it shouldn't
|
|
if ($show_help || $this->type == 'list') {
|
|
$theTitle .= "<span class='utils'>";
|
|
$createImageURL = SugarThemeRegistry::current()->getImageURL('create-record.gif');
|
|
if ($this->type == 'list') {
|
|
$theTitle .= '<a href="#" class="btn btn-success showsearch"><span class=" glyphicon glyphicon-search" aria-hidden="true"></span></a>';
|
|
}
|
|
$url = ajaxLink("index.php?module=$module&action=EditView&return_module=$module&return_action=DetailView");
|
|
if ($show_help) {
|
|
$theTitle .= <<<EOHTML
|
|
|
|
<a id="create_image" href="{$url}" class="utilsLink">
|
|
<img src='{$createImageURL}' alt='{$GLOBALS['app_strings']['LNK_CREATE']}'></a>
|
|
<a id="create_link" href="{$url}" class="utilsLink">
|
|
{$GLOBALS['app_strings']['LNK_CREATE']}
|
|
</a>
|
|
EOHTML;
|
|
}
|
|
$theTitle .= "</span>";
|
|
}
|
|
|
|
$theTitle .= "<div class='clear'></div></div>\n";
|
|
return $theTitle;
|
|
}
|
|
}
|