deployedsubpanelimplementation.php

来自「SugarCRM5.1 开源PHP客户关系管理系统」· PHP 代码 · 共 168 行

PHP
168
字号
<?phpif(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');/********************************************************************************* * SugarCRM is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004 - 2007 SugarCRM Inc. *  * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU 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 General Public License for more * details. *  * You should have received a copy of the GNU 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 General Public License version 3. *  * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * SugarCRM" logo. If the display of the logo is not reasonably feasible for * technical reasons, the Appropriate Legal Notices must display the words * "Powered by SugarCRM". *********************************************************************************//* * Changes to AbstractSubpanelImplementation for DeployedSubpanels * The main differences are in the load and save of the definitions * For subpanels we must make use of the SubPanelDefinitions class to do this; this also means that the history mechanism, * which tracks files, not objects, needs us to create an intermediate file representation of the definition that it can manage and restore */require_once 'modules/ModuleBuilder/parsers/views/MetaDataImplementationInterface.php' ;require_once 'modules/ModuleBuilder/parsers/views/AbstractMetaDataImplementation.php' ;require_once 'modules/ModuleBuilder/parsers/constants.php' ;class DeployedSubpanelImplementation extends AbstractMetaDataImplementation implements MetaDataImplementationInterface{    const HISTORYFILENAME = 'restored.php' ;    const HISTORYVARIABLENAME = 'layout_defs' ;        private $_subpanelName ;    private $_aSubPanelObject ; // an aSubPanel Object representing the current subpanel        /*     * Constructor     * @param string subpanelName   The name of this subpanel     * @param string moduleName     The name of the module to which this subpanel belongs     */    function __construct ($subpanelName , $moduleName)    {        $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . "->__construct($subpanelName , $moduleName)" ) ;        $this->_subpanelName = $subpanelName ;        $this->_moduleName = $moduleName ;                // BEGIN ASSERTIONS        if (! isset ( $GLOBALS [ 'beanList' ] [ $moduleName ] ))        {            sugar_die ( get_class ( $this ) . ": Modulename $moduleName is not a Deployed Module" ) ;        }        // END ASSERTIONS         $this->historyPathname = 'custom/history/modules/' . $moduleName . '/subpanels/' . $subpanelName . '/' . self::HISTORYFILENAME ;        $this->_history = new History ( $this->historyPathname ) ;                $module = get_module_info ( $moduleName ) ;                require_once ('include/SubPanel/SubPanelDefinitions.php') ;        // now check if there is a restored subpanel in the history area - if there is, then go ahead and use it        if (file_exists ( $this->historyPathname ))        {            // load in the subpanelDefOverride from the history file            $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . ": loading from history" ) ;            require $this->historyPathname ;            $spd = new SubPanelDefinitions ( $module, '', ${self::HISTORYVARIABLENAME} ) ;        } else        {            $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . ": loading from standard location" ) ;            // retrieve the definitions for all the available subpanels for this module from the subpanel            $spd = new SubPanelDefinitions ( $module ) ;        }        $this->_originalSubPanelDefs = $spd->layout_defs ;        // Get the lists of fields already in the subpanel and those that can be added in        // Get the fields lists from an aSubPanel object describing this subpanel from the SubPanelDefinitions object        $this->_viewdefs = array ( ) ;        $this->_fielddefs = array ( ) ;        $this->_language = '' ;        if (! empty ( $spd->layout_defs ))            if (array_key_exists ( strtolower ( $subpanelName ), $spd->layout_defs [ 'subpanel_setup' ] ))            {                $this->_aSubPanelObject = $spd->load_subpanel ( $subpanelName ) ;                $this->_viewdefs = $this->_aSubPanelObject->get_list_fields () ;                //$GLOBALS [ 'log' ]->debug ( get_class ( $this ) . "->__construct($subpanelName , $moduleName): " . print_r ( $this->_aSubPanelObject->get_list_fields (), true ) ) ;                                // don't attempt to access the template_instance property if our subpanel represents a collection, as it won't be there - the sub-sub-panels get this value instead                if ( ! $this->_aSubPanelObject->isCollection() )                    $this->_language = $this->_aSubPanelObject->template_instance->module_dir ;                // Retrieve a copy of the bean for the parent module of this subpanel - so we can find additional fields for the layout                $subPanelParentModuleName = $this->_aSubPanelObject->get_module_name () ;                $beanListLower = array_change_key_case ( $GLOBALS [ 'beanList' ] ) ;                if (! empty ( $subPanelParentModuleName ) && isset ( $beanListLower [ strtolower ( $subPanelParentModuleName ) ] ))                {                    $subPanelParentModule = get_module_info ( $subPanelParentModuleName ) ;                    // Run through the preliminary list, keeping only those fields that are valid to include in a layout                    foreach ( $subPanelParentModule->field_defs as $key => $def )                    {                        $key = strtolower ( $key ) ;                        if (! isset ( $def [ 'vname' ] ))                            $def [ 'vname' ] = (isset ( $def [ 'label' ] )) ? $def [ 'label' ] : $def [ 'name' ] ;                            // remove all of the fields that aren't allowed in the viewdefs                        if ((empty ( $def [ 'source' ] ) || $def [ 'source' ] == 'db' || $def [ 'source' ] == 'custom_fields') && (isset ( $def [ 'type' ] ) && $def [ 'type' ] != 'id') && strcmp ( $key, 'deleted' ) != 0 || (isset ( $def [ 'name' ] ) && strpos ( $def [ 'name' ], "_name" ) != false) || ! empty ( $def [ 'custom_type' ] ) && (empty ( $def [ 'dbType' ] ) || $def [ 'dbType' ] != 'id') && (empty ( $def [ 'dbtype' ] ) || $def [ 'dbtype' ] != 'id') || (! empty ( $def [ 'studio' ] ) && $def [ 'studio' ] == 'visible'))                        {                            $this->_fielddefs [ $key ] = $def ;                        }                    }                }            }    }    function getLanguage ()    {        return $this->_language ;    }    /*     * Save a definition that will be used to display a subpanel for $this->_moduleName     * @param array defs    Layout definition in the same format as received by the constructor     */    function deploy ($defs)    {        // first sort out the historical record...        // copy the definition to a temporary file then let the history object add it                write_array_to_file ( self::HISTORYVARIABLENAME, $this->_originalSubPanelDefs, $this->historyPathname, 'w', '' ) ;                $this->_history->append ( $this->historyPathname ) ;        // no need to unlink the temporary file as being handled by in history->append()        // unlink ( $this->historyPathname ) ;                $this->_viewdefs = $defs ;                require_once 'include/SubPanel/SubPanel.php' ;        $subpanel = new SubPanel ( $this->_moduleName, 'fab4', $this->_subpanelName , $this->_aSubPanelObject ) ;                $subpanel->saveSubPanelDefOverride ( $this->_aSubPanelObject, 'list_fields', $defs ) ;        // now clear the cache so that the results are immediately visible        include_once ('include/TemplateHandler/TemplateHandler.php') ;        TemplateHandler::clearCache ( $this->_moduleName ) ;        }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?