Extending/Customize List View

SugarCRM, SuiteCRM Navin Rakhonde
Today We came across a forum question which asked to hide "Closed Lost" opportunities from list view. Simple steps and you are through! Step 1: Create or edit custom/modules/Opportunities/views/view.list.php and add following code, <?php require_once('include/MVC/View/views/view.list.php'); class OpportunitiesViewList extends ViewList { function listViewProcess() { global $current_user; $this->processSearchForm(); if(!$current_user->is_admin) // remove this…
Read More