0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-12 09:18:42 +00:00
salesagility_SuiteCRM/modules/Employees/views/view.list.php
2019-04-15 16:51:14 -03:00

150 lines
5.7 KiB
PHP
Executable file

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* 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".
*/
class EmployeesViewList extends ViewList
{
public function preDisplay()
{
$this->lv = new ListViewSmarty();
$this->lv->delete = false;
$this->lv->email = false;
if (!$GLOBALS['current_user']->isAdminForModule('Users')) {
$this->lv->multiSelect = false;
}
}
/**
* Overridden from ViewList prepareSearchForm so we can tack on some additional where clauses
*
*/
public function prepareSearchForm()
{
parent::prepareSearchForm();
require_once('modules/Employees/EmployeesSearchForm.php');
$newForm = new EmployeesSearchForm($this->searchForm);
$this->searchForm = $newForm;
}
/**
* 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, $current_user;
$theTitle = "<div class='moduleTitle'>\n<h2>";
$module = preg_replace("/ /", "", $this->module);
$params = $this->_getModuleTitleParams();
$count = count($params);
$index = 0;
if (SugarThemeRegistry::current()->directionality == "rtl") {
$params = array_reverse($params);
}
$paramString = '';
foreach ($params as $parm) {
$index++;
$paramString .= $parm;
if ($index < $count) {
$paramString .= $this->getBreadCrumbSymbol();
}
}
if (!empty($paramString)) {
$theTitle .= "<h2> $paramString </h2>\n";
}
if ($show_help) {
$theTitle .= "<span class='utils'>";
if (is_admin($current_user) || is_admin_for_module($current_user, $this->module)) {
$createImageURL = SugarThemeRegistry::current()->getImageURL('create-record.gif');
$theTitle .= <<<EOHTML
&nbsp;
<a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
<img src='{$createImageURL}' alt='{$GLOBALS['app_strings']['LNK_CREATE']}'></a>
<a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
{$GLOBALS['app_strings']['LNK_CREATE']}
</a>
EOHTML;
}
}
$theTitle .= "</span></div>\n";
return $theTitle;
}
public function listViewProcess()
{
$this->processSearchForm();
$this->lv->searchColumns = $this->searchForm->searchColumns;
if (!$this->headers) {
return;
}
if (empty($_REQUEST['search_form_only']) || $_REQUEST['search_form_only'] == false) {
$this->lv->ss->assign("SEARCH", true);
$this->lv->ss->assign('savedSearchData', $this->searchForm->getSavedSearchData());
$tplFile = 'include/ListView/ListViewGeneric.tpl';
if (!$GLOBALS['current_user']->isAdminForModule('Users')) {
$tplFile = 'include/ListView/ListViewNoMassUpdate.tpl';
}
if (!empty($this->where)) {
$this->where .= " AND ";
}
$this->where .= "(users.status <> 'Reserved' or users.status is null) ";
$this->lv->setup($this->seed, $tplFile, $this->where, $this->params);
$savedSearchName = empty($_REQUEST['saved_search_select_name']) ? '' : (' - ' . $_REQUEST['saved_search_select_name']);
echo $this->lv->display();
}
}
}