Whoops \ Exception \ ErrorException (E_WARNING)
Undefined array key "HTTP_ACCEPT_LANGUAGE" Whoops\Exception\ErrorException thrown with message "Undefined array key "HTTP_ACCEPT_LANGUAGE"" Stacktrace: #12 Whoops\Exception\ErrorException in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php:24 #11 Whoops\Run:handleError in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php:24 #10 PageModel:get_browser_language_code in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/uploads/cache/applets/946399a6d5f358159e09ec9046f22aa878127819.bladec:2 #9 include in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php:937 #8 Sucurema\Core\Render\Blade\BladeOne:evaluatePath in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php:879 #7 Sucurema\Core\Render\Blade\BladeOne:runInternal in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php:1415 #6 Sucurema\Core\Render\Blade\BladeOne:run in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/bootstrapper/classes/Routes/BaseRoutes.php:65 #5 Sucurema\Core\Router:{closure} in [internal]:0 #4 Closure:call in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/base/Router/Router.php:685 #3 Sucurema\Core\Router:match in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/base/Router/Router.php:197 #2 Sucurema\Core\Router:Start in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/application.class.php:373 #1 Application:initialize in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/auth/auth_header.php:120 #0 include in /var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/index.php:13
Stack frames (13)
12
Whoops\Exception\ErrorException
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php24
11
Whoops\Run handleError
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php24
10
PageModel get_browser_language_code
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/uploads/cache/applets/946399a6d5f358159e09ec9046f22aa878127819.bladec2
9
include
/application/init/Render/Blade/BladeOne.php937
8
Sucurema\Core\Render\Blade\BladeOne evaluatePath
/application/init/Render/Blade/BladeOne.php879
7
Sucurema\Core\Render\Blade\BladeOne runInternal
/application/init/Render/Blade/BladeOne.php1415
6
Sucurema\Core\Render\Blade\BladeOne run
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/bootstrapper/classes/Routes/BaseRoutes.php65
5
Sucurema\Core\Router {closure}
[internal]0
4
Closure call
/application/base/Router/Router.php685
3
Sucurema\Core\Router match
/application/base/Router/Router.php197
2
Sucurema\Core\Router Start
/application/application.class.php373
1
Application initialize
/application/auth/auth_header.php120
0
include
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/index.php13
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php
 
    public function directPostUpdate()
    {
        \UrlCache::Build();
    }
 
    public function directPostInsert()
    {
        \UrlCache::Build();
    }
 
    public function directPostDelete()
    {
        \UrlCache::Build();
    }
 
 
    public function get_browser_language_code($available_languages = [], $default = 'en'): string
    {
        $browser_languages = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
 
        if (empty($available_languages)) {
            return substr($browser_languages[0], 0, 2);
        }
 
        foreach ($browser_languages as $language) {
            $language = substr($language, 0, 2);
            if (in_array($language, $available_languages)) {
                return $language;
            }
        }
        return $default;
    }
 
    public function getUserLang()
    {
        return \Helper::getUserLanguage(\SucUser::ID());
    }
 
    public function urlCacheTransformer(array $urlCacheConfig) {
Arguments
  1. "Undefined array key "HTTP_ACCEPT_LANGUAGE""
    
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/page/model/PageModel.php
 
    public function directPostUpdate()
    {
        \UrlCache::Build();
    }
 
    public function directPostInsert()
    {
        \UrlCache::Build();
    }
 
    public function directPostDelete()
    {
        \UrlCache::Build();
    }
 
 
    public function get_browser_language_code($available_languages = [], $default = 'en'): string
    {
        $browser_languages = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
 
        if (empty($available_languages)) {
            return substr($browser_languages[0], 0, 2);
        }
 
        foreach ($browser_languages as $language) {
            $language = substr($language, 0, 2);
            if (in_array($language, $available_languages)) {
                return $language;
            }
        }
        return $default;
    }
 
    public function getUserLang()
    {
        return \Helper::getUserLanguage(\SucUser::ID());
    }
 
    public function urlCacheTransformer(array $urlCacheConfig) {
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/uploads/cache/applets/946399a6d5f358159e09ec9046f22aa878127819.bladec
<?php 
 $browserLang = $page->get_browser_language_code( [ 'it', 'fr', 'de' ] ) ;
 $userLang = $page->getUserLang();
 $browserMap = ["it" => "ita", "fr" => "fra", "de" => "ger"];
 $userMap = [0 => "ger", 1 => "ita", 2 => "fra"];
 $langB = issetor($browserMap[$browserLang], null);
 $langU = issetor($userMap[$userLang],null);
 $lang = $langU != null ? $langU : ($langB != null ? $langB : "ger");
 $title_lang = "title_".$lang;
 $content_lang = "content_".$lang;
 $snippet_lang = "snippet_".$lang;
 ?>
<html>

<head>
 <title><?php echo static::e($page->$title_lang); ?></title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="/design/frontend/css/app.css"/>
 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 <?php echo $this->runChild('views.datenschutz'); ?>

 <?php if(isset($page->style_css)): ?>
 <style>
 <?php echo $page->style_css; ?>

 </style>
 <?php endif; ?>

</head>

<body>
<div class="container">
 <div class="row">
 <div class="col-md-12">
 <?php echo $page->$content_lang; ?>

 <?php if(!empty($page->{$snippet_lang})): ?>
 <div id="journeyform"></div>
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php
    /**
     * Evaluates a compiled file using the current variables
     *
     * @param string $compiledFile full path of the compile file.
     * @param array $variables
     * @return string
     * @throws Exception
     */
    protected function evaluatePath($compiledFile, $variables)
    {
        \ob_start();
        // note, the variables are extracted locally inside this method,
        // they are not global variables :-3
        \extract($variables);
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            /** @noinspection PhpIncludeInspection */
            include $compiledFile;
        } catch (Exception $e) {
            $this->handleViewException($e);
        }
        return \ltrim(\ob_get_clean());
    }

    /**
     * @param array $views array of views
     * @param array $value
     * @return string
     * @throws Exception
     */
    public function includeFirst($views = [], $value = [])
    {
        foreach ($views as $view) {
            if ($this->templateExist($view)) {
                return $this->runChild($view, $value);
            }
        };
        return '';
Arguments
  1. "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/uploads/cache/applets/946399a6d5f358159e09ec9046f22aa878127819.bladec"
    
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php
        }
        if (!$runFast) {
            // a) if the compile is forced then we compile the original file, then save the file.
            // b) if the compile is not forced then we read the datetime of both file and we compared.
            // c) in both cases, if the compiled doesn't exist then we compile.
            if ($view) {
                $this->fileName = $view;
            }
            $result = $this->compile($view, $forced);
            if (!$this->isCompiled) {
                return $this->evaluateText($result, $variables);
            }
        } else {
            // running fast, we don't compile neither we check or read the original template.
            if ($view) {
                $this->fileName = $view;
            }
        }
        $this->isRunFast = $runFast;
        return $this->evaluatePath($this->getCompiledFile(), $variables);
    }

    /**
     * Evaluates a text (string) using the current variables
     *
     * @param string $content
     * @param array $variables
     * @return string
     * @throws Exception
     */
    protected function evaluateText($content, $variables)
    {
        \ob_start();
        \extract($variables);
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            eval(' ?>' . $content . '<?php ');
        } catch (Exception $e) {
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/init/Render/Blade/BladeOne.php
    }

    /**
     * run the blade engine. It returns the result of the code.
     *
     * @param       $view
     * @param array $variables
     * @return string
     * @throws Exception
     */
    public function run($view, $variables = [])
    {
        $mode = $this->getMode();
        $forced = $mode & 1; // mode=1 forced:it recompiles no matter if the compiled file exists or not.
        $runFast = $mode & 2; // mode=2 runfast: the code is not compiled neither checked and it runs directly the compiled
        $this->sections = [];
        if ($mode == 3) {
            $this->showError("run", "we can't force and run fast at the same time", true);
        }
        return $this->runInternal($view, $variables, $forced, true, $runFast);
    }

    /**
     * Start a component rendering process.
     *
     * @param string $name
     * @param array $data
     * @return void
     */
    public function startComponent($name, array $data = [])
    {
        if (\ob_start()) {
            $this->componentStack[] = $name;

            $this->componentData[$this->currentComponent()] = $data;

            $this->slots[$this->currentComponent()] = [];
        }
    }

/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/modules/bootstrapper/classes/Routes/BaseRoutes.php
            });
        }

        foreach ($pagesLegacy as $slug => $config) {
            SucRouter::Route($slug, function () use ($config) {

                $page = \PageModel::find($config[\UrlCache::BASE_DATA]['id']);

                if ($page->redirect !== "") {
                    SucRouter::Redirect($page->redirect);
                }

                Helper::RedicrectOnPermissionMissmatch($config[\UrlCache::PERMISSION_LEVEL]);

                $blade = new \mySucBlade(
                    get_include_path() . "modules/frontend",
                    get_include_path() . "uploads/cache/applets"
                );

                echo $blade->run("views.fullPage", array("page" => $page));
                return true;
            });
        }

    }

    public  function MyContent() {

        \Helper::RedicrectOnPermissionMissmatch("customer");

        echo $this->blade->run("views.base", []);

    }

    public  function Profile() {

        \Helper::RedicrectOnPermissionMissmatch("customer");

        echo $this->blade->run("views.base", []);
    }
[internal]
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/base/Router/Router.php
            return false;
        }

        //we have a predefined route class
        if ($this->activeRoute->static === true && $this->routeClass !== null) {

            // check for a match again (more in detail) and use that method to set the required data
            if ($routeClass->isMatch($uriParts['path'])) {
                return $routeClass->run();
            }
        }

        // we have a direct call closure;
        if (
            $this->activeRoute->method !== null &&
            is_object($this->activeRoute->method) &&
            ($this->activeRoute->method instanceof \Closure)
        ) {

            $status = $this->activeRoute->method->call($this);

            if ($status === false) {
                return false;
            }

            return true;
        }

        // a class is defined as target
        if ($this->activeRoute->class !== null && class_exists($this->activeRoute->class)) {

            $class = new $this->activeRoute->class;

            // has a method?
            if ($this->activeRoute->method !== null) {
                $method = $this->activeRoute->method;
                return $class->$method();
            } else {
                // everything will happen in the constructor
                return $class;
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/base/Router/Router.php
    public static function getListView()
    {
        if (self::$instance == null) {
            return false;
        }
        $url = "/module/" . self::$instance->fetchRouteParams(false)["module"];

        return $url;
    }

    public static function Start()
    {

        if (self::$instance == null) {
            return false;
        }

        if (!self::$instance->hasRun) {
            self::$instance->hasRun = true;
            $status = self::$instance->match();
            if ($status === false) {

                //var_dump($_SERVER);

                if (!isset($_SERVER['REDIRECT_URL'])) {
                    return true;
                }

                if (isset($_SERVER['REDIRECT_URL']) && file_exists($_SERVER['SCRIPT_FILENAME'])) {
                    if ($_SERVER['SCRIPT_NAME'] !== "/index.php") {
                        return true;
                    }
                }

                $callable = self::$instance->errorBehavior;
                if (is_object($callable) && ($callable instanceof \Closure)) {
                    $callable->call(self::$instance);
                }

                return false;
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/application.class.php
            $_SESSION["BCREGISTRYCALLED"] = false;
        }
        if (file_exists(get_include_path() . "/core/storage/modelCache/modelCache.php") && array_key_exists("BCREGISTRYNAMEDROUTES", $_SESSION) &&  $_SESSION["BCREGISTRYNAMEDROUTES"] == true) {
            include_once get_include_path() . "/core/storage/modelCache/modelCache.php";
        }

        if (file_exists(get_include_path() . "/core/storage/routerCache/routerCache.php") && array_key_exists("BCREGISTRYNAMEDROUTES", $_SESSION) &&  $_SESSION["BCREGISTRYNAMEDROUTES"] == true) {
            include_once get_include_path() . "/core/storage/routerCache/routerCache.php";
        }
        if (isset($GLOBALS['USE_ROUTING']) && $GLOBALS['USE_ROUTING'] == true) {
            Sucurema\Core\Router::Init();

            $this->coreBootstrapper->routes();
            $this->bootstrapper->routes();

            // routing anything is not required if we're in the cli
            if (\SucConfig::IsTrue('CLI_IN_USE')) {
                return;
            }
            Sucurema\Core\Router::Start();
        }
    }






    private function isGuestUsageActive()
    {
        return isset($GLOBALS['ALLOW_GUEST_USAGE']) && $GLOBALS['ALLOW_GUEST_USAGE'] == TRUE;
    }

    private function logUserActivities()
    {
        if (array_key_exists("admin", $_SESSION["BCREGISTRY"]) || array_key_exists("useractivities", $_SESSION["BCREGISTRY"])) {
            include_once dirname(dirname(__FILE__)) . "/modules/useractivities/bc/useractivitiesbuscomp.class.php";
            $ubc = new UseractivitiesBusComp();
            $ubc->init(\SucUser::ID());
            $userType = intval(\SucConfig::Get("loggingUser"));
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/auth/auth_header.php
    if (!isset($_SESSION['ADMINSETTINGS_BUSINESSYEAR'])) {
        $_SESSION['ADMINSETTINGS_BUSINESSYEAR'] = 1;
    }


    include 'core/bc/buscomp.class.php';
    include 'core/ic/csvintcomp.class.php';
    include 'core/applets/applet.class.php';
    include 'core/toolbars/toolbar.class.php';
    include 'core/drilldowns/drilldown.class.php';
    include 'core/modules/logon/auth/verification.php';
    include 'core/modules/logon/bc/applicationuserbuscomp.class.php';
    include 'core/application/application.class.php';

    // once the whole thing is setup we don't need to run it;
    $GLOBALS['initDone'] = true;

    #Create Application context
    $application = new Application();
    if ($application->initialize() == false) {
        $GLOBALS["USE_CMS"] = true;
    }
}
 
/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/index.php
<?php
//$page_title = $GLOBALS["APP_TITLE"] . "";
 
//echo "Maintenance";
//exit();
 
ini_set('memory_limit', '3048M');
date_default_timezone_set('Europe/Berlin');
$START_LANG = "ENU";
 
#Authentification/Login and open main view block
include "config/includepath.php";
include 'core/application/auth/auth_header.php';
 
 
//if(isset($_SESSION["isLogged"]) && $_SESSION["isLogged"]) {
 
#Check permissions
//include 'modules/logon/auth/verification.php';
 
//header ("Location: /modules/dashboard/views/dashboardview.php");
//    exit();
//}
 
#Close main view block
//include "core/application/auth/auth_footer.php";
 
 
?>
Arguments
  1. "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/core/application/auth/auth_header.php"
    

Environment & details:

empty
empty
empty
empty
Key Value
isLogged
true
timeout
1713595659
lang
"ENU"
skinName
"scrm"
ADMINSETTINGS_BUSINESSYEAR
"3"
userId
-1
HTTP_USER_AGENT
"fac378ac3b3d3886829021b3309d4fd1"
USER_ADDRESS
"26440106717bcb3a5427fbeb5fc84cae"
login
"public"
firstName
"public"
lastName
"public"
userType
"public"
emailAddress
""
accountName
""
accountCode
""
accountId
""
login_time_stamp
1713595659
AttachmentDeleteMode
1
CMSSUBLOGINSET
true
userRole
null
MODELCACHEFILLED
true
ROUTERCACHEFILLED
true
BCREGISTRY
array:70 [
  "cmslanguage" => array:21 [
    "bcname" => "cmslanguage"
    "bcpath" => "cmslanguage"
    "name" => "cmslanguagebuscomp.class.php"
    "langName" => "Cmslanguage"
    "bcobjectcode" => "cmslanguage"
    "displayId" => "cmslanguageDisplayId"
    "displayName" => "cmslanguageDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:23 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "page_uuid" => array:12 [ …12]
      "component_uuid" => array:12 [ …12]
      "menulink_uuid" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "module_name" => array:12 [ …12]
      "p_title" => array:12 [ …12]
      "p_mtitle" => array:12 [ …12]
      "p_mdesc" => array:12 [ …12]
      "p_mkeywords" => array:12 [ …12]
      "p_headerimg" => array:12 [ …12]
      "p_matnummer" => array:12 [ …12]
      "c_title" => array:12 [ …12]
      "c_buttontitle" => array:12 [ …12]
      "c_link" => array:12 [ …12]
      "c_image" => array:12 [ …12]
      "c_content" => array:12 [ …12]
      "c_alt" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_cmslanguage"
    "sqlName" => "t1.uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "locationcode" => array:21 [
    "bcname" => "locationcode"
    "bcpath" => "locationcode"
    "name" => "locationcodebuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "locationcode"
    "displayId" => "locationcodeDisplayId"
    "displayName" => "locationcodeDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "code" => array:12 [ …12]
      "canton" => array:12 [ …12]
      "active" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_locationcode"
    "sqlName" => "CONCAT(t1.postalcode, CONCAT(' - ',t1.name))"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "offerruleoption" => array:21 [
    "bcname" => "offerruleoption"
    "bcpath" => "offerruleoption"
    "name" => "offerruleoptionbuscomp.class.php"
    "langName" => "Offerruleoption"
    "bcobjectcode" => "offerruleoption"
    "displayId" => "offerruleoptionDisplayId"
    "displayName" => "offerruleoptionDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "offerRule" => array:12 [ …12]
      "position" => array:12 [ …12]
      "type" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_offerruleoption"
    "sqlName" => "t1.offer_rule_id"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "zoomwebinar" => array:21 [
    "bcname" => "zoomwebinar"
    "bcpath" => "zoomwebinar"
    "name" => "zoomwebinarbuscomp.class.php"
    "langName" => "Zoom Webinar"
    "bcobjectcode" => "zoomwebinar"
    "displayId" => "zoomwebinarDisplayId"
    "displayName" => "zoomwebinarDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:30 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "topic" => array:12 [ …12]
      "agenda" => array:12 [ …12]
      "start_date" => array:12 [ …12]
      "end_date" => array:12 [ …12]
      "settingsFields" => array:12 [ …12]
      "survey_url" => array:12 [ …12]
      "host_video" => array:12 [ …12]
      "panelists_video" => array:12 [ …12]
      "hd_video" => array:12 [ …12]
      "approval_type" => array:12 [ …12]
      "close_registration" => array:12 [ …12]
      "registrants_restrict_number" => array:12 [ …12]
      "registrants_email_notification" => array:12 [ …12]
      "registrants_confirmation_email" => array:12 [ …12]
      "allow_multiple_devices" => array:12 [ …12]
      "panelists_invitation_email_notification" => array:12 [ …12]
      "practice_session" => array:12 [ …12]
      "contact_email" => array:12 [ …12]
      "contact_name" => array:12 [ …12]
      "storeFields" => array:12 [ …12]
      "event_id" => array:12 [ …12]
      "event_uuid" => array:12 [ …12]
      "start_url" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_zoomwebinar"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "brand" => array:21 [
    "bcname" => "brand"
    "bcpath" => "brand"
    "name" => "brandbuscomp.class.php"
    "langName" => "Brand"
    "bcobjectcode" => "brand"
    "displayId" => "brandDisplayId"
    "displayName" => "brandDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "language" => array:12 [ …12]
      "active" => array:12 [ …12]
      "logo" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_brand"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "userblacklist" => array:21 [
    "bcname" => "userblacklist"
    "bcpath" => "userblacklist"
    "name" => "userblacklistbuscomp.class.php"
    "langName" => "Userblacklist"
    "bcobjectcode" => "userblacklist"
    "displayId" => "userblacklistDisplayId"
    "displayName" => "userblacklistDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:8 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "domain" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_userblacklist"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "faq" => array:21 [
    "bcname" => "faq"
    "bcpath" => "faq"
    "name" => "faqbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "faq"
    "displayId" => "faqDisplayId"
    "displayName" => "faqDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:18 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "status" => array:12 [ …12]
      "category" => array:12 [ …12]
      "pos" => array:12 [ …12]
      "title_ger" => array:12 [ …12]
      "content_ger" => array:12 [ …12]
      "title_fra" => array:12 [ …12]
      "content_fra" => array:12 [ …12]
      "title_ita" => array:12 [ …12]
      "content_ita" => array:12 [ …12]
      "createdByLogin" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_faq"
    "sqlName" => "CONCAT(CONCAT(t1.name, ' - '), t1.created)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "loginhero" => array:21 [
    "bcname" => "loginhero"
    "bcpath" => "loginhero"
    "name" => "loginherobuscomp.class.php"
    "langName" => "Loginhero"
    "bcobjectcode" => "loginhero"
    "displayId" => "loginheroDisplayId"
    "displayName" => "loginheroDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:28 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "title_ger" => array:12 [ …12]
      "title_fra" => array:12 [ …12]
      "title_ita" => array:12 [ …12]
      "description_ger" => array:12 [ …12]
      "description_fra" => array:12 [ …12]
      "description_ita" => array:12 [ …12]
      "active" => array:12 [ …12]
      "type" => array:12 [ …12]
      "picture" => array:12 [ …12]
      "link_ger" => array:12 [ …12]
      "link_fra" => array:12 [ …12]
      "link_ita" => array:12 [ …12]
      "linkTitle_ger" => array:12 [ …12]
      "linkTitle_fra" => array:12 [ …12]
      "linkTitle_ita" => array:12 [ …12]
      "offer" => array:12 [ …12]
      "expireDate" => array:12 [ …12]
      "startDate" => array:12 [ …12]
      "expireDateView" => array:12 [ …12]
      "startDateView" => array:12 [ …12]
      "isLoginheroVisible" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_loginhero"
    "sqlName" => "CONCAT(CONCAT(t1.title, ' - '), t1.created)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "page" => array:21 [
    "bcname" => "page"
    "bcpath" => "page"
    "name" => "pagebuscomp.class.php"
    "langName" => "Pages"
    "bcobjectcode" => "page"
    "displayId" => "pageDisplayId"
    "displayName" => "pageDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:22 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "slug" => array:12 [ …12]
      "title_ita" => array:12 [ …12]
      "title_fra" => array:12 [ …12]
      "title_ger" => array:12 [ …12]
      "content_ita" => array:12 [ …12]
      "content_fra" => array:12 [ …12]
      "content_ger" => array:12 [ …12]
      "snippet_ita" => array:12 [ …12]
      "snippet_fra" => array:12 [ …12]
      "snippet_ger" => array:12 [ …12]
      "style_css" => array:12 [ …12]
      "redirect" => array:12 [ …12]
      "public" => array:12 [ …12]
      "active" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_page"
    "sqlName" => "CONCAT(t1.name_val)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => true
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "territory" => array:21 [
    "bcname" => "territory"
    "bcpath" => "territory"
    "name" => "territorybuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "territory"
    "displayId" => "territoryDisplayId"
    "displayName" => "territoryDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "locations" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_territory"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "test" => array:21 [
    "bcname" => "test"
    "bcpath" => "test"
    "name" => "testbuscomp.class.php"
    "langName" => " Test BC"
    "bcobjectcode" => "test"
    "displayId" => "testDisplayId"
    "displayName" => "testDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "groupStandardFields" => array:12 [ …12]
      "string" => array:12 [ …12]
      "number" => array:12 [ …12]
      "double" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:9 [
      0 => 0
      1 => 1
      2 => 2
      3 => 3
      4 => 4
      5 => 5
      6 => 6
      7 => 7
      8 => 8
    ]
    "tableName" => "icrm_test"
    "sqlName" => "CONCAT(t1.string)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => true
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "formstorevalue" => array:21 [
    "bcname" => "formstorevalue"
    "bcpath" => "formstorevalue"
    "name" => "formstorevaluebuscomp.class.php"
    "langName" => "Formstorevalue"
    "bcobjectcode" => "formstorevalue"
    "displayId" => "formstorevalueDisplayId"
    "displayName" => "formstorevalueDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "store_uuid" => array:12 [ …12]
      "form_field_uuid" => array:12 [ …12]
      "value" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formstorevalue"
    "sqlName" => "t1.store_uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "producttraining" => array:21 [
    "bcname" => "producttraining"
    "bcpath" => "producttraining"
    "name" => "producttrainingbuscomp.class.php"
    "langName" => "Producttraining"
    "bcobjectcode" => "producttraining"
    "displayId" => "producttrainingDisplayId"
    "displayName" => "producttrainingDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:20 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "title" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "active" => array:12 [ …12]
      "hidden" => array:12 [ …12]
      "duration" => array:12 [ …12]
      "therapyarea" => array:12 [ …12]
      "description" => array:12 [ …12]
      "matnumber" => array:12 [ …12]
      "fph_number" => array:12 [ …12]
      "course_number" => array:12 [ …12]
      "hasCertificate" => array:12 [ …12]
      "producttraining_video" => array:12 [ …12]
      "producttraining_image" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_producttraining"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "cmspage" => array:21 [
    "bcname" => "cmspage"
    "bcpath" => "cmspage"
    "name" => "cmspagebuscomp.class.php"
    "langName" => "Cmspage"
    "bcobjectcode" => "cmspage"
    "displayId" => "cmspageDisplayId"
    "displayName" => "cmspageDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:17 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "type" => array:12 [ …12]
      "slug" => array:12 [ …12]
      "active" => array:12 [ …12]
      "lang_de" => array:12 [ …12]
      "lang_fr" => array:12 [ …12]
      "lang_it" => array:12 [ …12]
      "role" => array:12 [ …12]
      "showFooter" => array:12 [ …12]
      "headerType" => array:12 [ …12]
      "menuType" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_cmspage"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "product" => array:21 [
    "bcname" => "product"
    "bcpath" => "product"
    "name" => "productbuscomp.class.php"
    "langName" => "Product"
    "bcobjectcode" => "product"
    "displayId" => "productDisplayId"
    "displayName" => "productDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:28 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "pharmaNumber" => array:12 [ …12]
      "articleNumber" => array:12 [ …12]
      "sortNumber" => array:12 [ …12]
      "type" => array:12 [ …12]
      "brand" => array:12 [ …12]
      "form" => array:12 [ …12]
      "dosage" => array:12 [ …12]
      "package" => array:12 [ …12]
      "price" => array:12 [ …12]
      "availabilityEnd" => array:12 [ …12]
      "availabilityStart" => array:12 [ …12]
      "maxOrderQuantity" => array:12 [ …12]
      "active" => array:12 [ …12]
      "amount" => array:12 [ …12]
      "title_fr" => array:12 [ …12]
      "title_de" => array:12 [ …12]
      "title_it" => array:12 [ …12]
      "picture_fr" => array:12 [ …12]
      "picture_de" => array:12 [ …12]
      "picture_it" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_product"
    "sqlName" => "CONCAT(CONCAT(t1.name, ' - '), t1.article_number)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "language" => array:21 [
    "bcname" => "language"
    "bcpath" => "language"
    "name" => "languagebuscomp.class.php"
    "langName" => "Language"
    "bcobjectcode" => "language"
    "displayId" => "languageDisplayId"
    "displayName" => "languageDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "description" => array:12 [ …12]
      "type" => array:12 [ …12]
      "category" => array:12 [ …12]
      "language" => array:12 [ …12]
      "createdByLogin" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_language"
    "sqlName" => "t1.description"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "offerrule" => array:21 [
    "bcname" => "offerrule"
    "bcpath" => "offerrule"
    "name" => "offerrulebuscomp.class.php"
    "langName" => "Offerrule"
    "bcobjectcode" => "offerrule"
    "displayId" => "offerruleDisplayId"
    "displayName" => "offerruleDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "offer" => array:12 [ …12]
      "type" => array:12 [ …12]
      "value" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_offerrule"
    "sqlName" => "t1.value"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "allfields" => array:21 [
    "bcname" => "allfields"
    "bcpath" => "allfields"
    "name" => "allfieldsbuscomp.class.php"
    "langName" => "Allfields Test BC"
    "bcobjectcode" => "allfields"
    "displayId" => "allfieldsDisplayId"
    "displayName" => "allfieldsDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => "user"
    ]
    "ischildof" => false
    "fields" => array:40 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "groupStandardFields" => array:12 [ …12]
      "string" => array:12 [ …12]
      "number" => array:12 [ …12]
      "double" => array:12 [ …12]
      "currency" => array:12 [ …12]
      "groupDateFields" => array:12 [ …12]
      "dateVal" => array:12 [ …12]
      "dateTime" => array:12 [ …12]
      "time" => array:12 [ …12]
      "lovDrilldownFields" => array:12 [ …12]
      "user" => array:12 [ …12]
      "status" => array:12 [ …12]
      "statusRadio" => array:12 [ …12]
      "statusBool" => array:12 [ …12]
      "longContentFields" => array:12 [ …12]
      "comments" => array:12 [ …12]
      "commentsHTML" => array:12 [ …12]
      "attachmentFields" => array:12 [ …12]
      "attachment" => array:12 [ …12]
      "attachmentMulti" => array:12 [ …12]
      "relFields" => array:12 [ …12]
      "userNm" => array:12 [ …12]
      "status1N" => array:12 [ …12]
      "label" => array:12 [ …12]
      "dynamicFields" => array:12 [ …12]
      "statusDyn" => array:12 [ …12]
      "statusMulti" => array:12 [ …12]
      "statusMultiDyn" => array:12 [ …12]
      "multicheck" => array:12 [ …12]
      "statusPredict" => array:12 [ …12]
      "statusPredictDyn" => array:12 [ …12]
      "radioCustom" => array:12 [ …12]
      "blade" => array:12 [ …12]
      "email" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:9 [
      0 => 0
      1 => 1
      2 => 2
      3 => 3
      4 => 4
      5 => 5
      6 => 6
      7 => 7
      8 => 8
    ]
    "tableName" => "icrm_allfields"
    "sqlName" => "CONCAT(t1.string)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => true
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "user" => array:21 [
    "bcname" => "user"
    "bcpath" => "user"
    "name" => "userbuscomp.class.php"
    "langName" => "Employees"
    "bcobjectcode" => "user"
    "displayId" => "userDisplayId"
    "displayName" => "userDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:47 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "gender" => array:12 [ …12]
      "title" => array:12 [ …12]
      "firstName" => array:12 [ …12]
      "lastName" => array:12 [ …12]
      "street" => array:12 [ …12]
      "phone" => array:12 [ …12]
      "locationCode" => array:12 [ …12]
      "userGln" => array:12 [ …12]
      "sanofiCode" => array:12 [ …12]
      "emailAddress" => array:12 [ …12]
      "wholesaler" => array:12 [ …12]
      "wholesalerNumber" => array:12 [ …12]
      "language" => array:12 [ …12]
      "verificationToken" => array:12 [ …12]
      "verified" => array:12 [ …12]
      "approved" => array:12 [ …12]
      "role" => array:12 [ …12]
      "loginType" => array:12 [ …12]
      "resetToken" => array:12 [ …12]
      "resetTokenDateTime" => array:12 [ …12]
      "login" => array:12 [ …12]
      "password" => array:12 [ …12]
      "userType" => array:12 [ …12]
      "registrationDate" => array:12 [ …12]
      "lastLoginDate" => array:12 [ …12]
      "territory" => array:12 [ …12]
      "sicknessCover" => array:12 [ …12]
      "photo" => array:12 [ …12]
      "comments" => array:12 [ …12]
      "proPharmaGLN" => array:12 [ …12]
      "proPharmaToken" => array:12 [ …12]
      "proPharmaLoginToken" => array:12 [ …12]
      "proPharmaActive" => array:12 [ …12]
      "proPharmaTokeTimeStamp" => array:12 [ …12]
      "generateProPharmaToken" => array:12 [ …12]
      "chain" => array:12 [ …12]
      "companyName" => array:12 [ …12]
      "companyAddressLocationCode" => array:12 [ …12]
      "companyAddressStreet" => array:12 [ …12]
      "gln" => array:12 [ …12]
      "companyContactPref" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_user"
    "sqlName" => "CONCAT(t1.last_name, ", " ,t1.first_name, " - ", t1.company_name)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "usermyprofile" => array:21 [
    "bcname" => "usermyprofile"
    "bcpath" => "user"
    "name" => "usermyprofilebuscomp.class.php"
    "langName" => "My Profile"
    "bcobjectcode" => "usermyprofile"
    "displayId" => "userDisplayId"
    "displayName" => "userDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "lastName" => array:12 [ …12]
      "firstName" => array:12 [ …12]
      "emailAddress" => array:12 [ …12]
      "login" => array:12 [ …12]
      "password" => array:12 [ …12]
      "gender" => array:12 [ …12]
      "photo" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 0
    ]
    "tableName" => "icrm_user"
    "sqlName" => "CONCAT(t1.last_name, ", " ,t1.first_name)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "order" => array:21 [
    "bcname" => "order"
    "bcpath" => "order"
    "name" => "orderbuscomp.class.php"
    "langName" => "Order"
    "bcobjectcode" => "order"
    "displayId" => "orderDisplayId"
    "displayName" => "orderDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:31 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "offer" => array:12 [ …12]
      "orderNumber" => array:12 [ …12]
      "status" => array:12 [ …12]
      "type" => array:12 [ …12]
      "wholesaler" => array:12 [ …12]
      "wholesalerNumber" => array:12 [ …12]
      "street" => array:12 [ …12]
      "houseNumber" => array:12 [ …12]
      "locationCode" => array:12 [ …12]
      "gln" => array:12 [ …12]
      "sanofiCode" => array:12 [ …12]
      "sum" => array:12 [ …12]
      "rebate" => array:12 [ …12]
      "priceReduction" => array:12 [ …12]
      "appliedRule" => array:12 [ …12]
      "dateConfirmed" => array:12 [ …12]
      "dateDenied" => array:12 [ …12]
      "product" => array:12 [ …12]
      "owner" => array:12 [ …12]
      "customer" => array:12 [ …12]
      "comment" => array:12 [ …12]
      "proPharmaStatus" => array:12 [ …12]
      "orderItemList" => array:12 [ …12]
      "OrderListButtons" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_order"
    "sqlName" => "t1.order_number"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "formfield" => array:21 [
    "bcname" => "formfield"
    "bcpath" => "formfield"
    "name" => "formfieldbuscomp.class.php"
    "langName" => "Formfield"
    "bcobjectcode" => "formfield"
    "displayId" => "formfieldDisplayId"
    "displayName" => "formfieldDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:20 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "form_uuid" => array:12 [ …12]
      "group_uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "label" => array:12 [ …12]
      "type" => array:12 [ …12]
      "data_type" => array:12 [ …12]
      "required" => array:12 [ …12]
      "initial_visible" => array:12 [ …12]
      "width" => array:12 [ …12]
      "options_width" => array:12 [ …12]
      "position" => array:12 [ …12]
      "page" => array:12 [ …12]
      "info" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formfield"
    "sqlName" => "t1.label"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "offeritem" => array:21 [
    "bcname" => "offeritem"
    "bcpath" => "offeritem"
    "name" => "offeritembuscomp.class.php"
    "langName" => "Offeritem"
    "bcobjectcode" => "offeritem"
    "displayId" => "offeritemDisplayId"
    "displayName" => "offeritemDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "offer" => array:12 [ …12]
      "product" => array:12 [ …12]
      "startDelivery" => array:12 [ …12]
      "endDelivery" => array:12 [ …12]
      "quantityMultiplier" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_offeritem"
    "sqlName" => "CONCAT(CONCAT(t1.id, ' - '), t1.created)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "mailtemplate" => array:21 [
    "bcname" => "mailtemplate"
    "bcpath" => "mailtemplate"
    "name" => "mailtemplatebuscomp.class.php"
    "langName" => "Mail template"
    "bcobjectcode" => "mailtemplate"
    "displayId" => "mailtemplateDisplayId"
    "displayName" => "mailtemplateDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "action" => array:12 [ …12]
      "status" => array:12 [ …12]
      "createdByLogin" => array:12 [ …12]
      "language" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_mailtemplate"
    "sqlName" => "CONCAT(CONCAT(t1.name, ' - '), t1.created)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "elearning" => array:21 [
    "bcname" => "elearning"
    "bcpath" => "elearning"
    "name" => "elearningbuscomp.class.php"
    "langName" => "E-Learning"
    "bcobjectcode" => "elearning"
    "displayId" => "elearningDisplayId"
    "displayName" => "elearningDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:22 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "title" => array:12 [ …12]
      "type" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "active" => array:12 [ …12]
      "hidden" => array:12 [ …12]
      "duration" => array:12 [ …12]
      "description" => array:12 [ …12]
      "matnumber" => array:12 [ …12]
      "fph_number" => array:12 [ …12]
      "course_number" => array:12 [ …12]
      "elearning_video" => array:12 [ …12]
      "elearning_image" => array:12 [ …12]
      "speaker" => array:12 [ …12]
      "accreditation" => array:12 [ …12]
      "form_id" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_elearning"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "webinar" => array:21 [
    "bcname" => "webinar"
    "bcpath" => "webinar"
    "name" => "webinarbuscomp.class.php"
    "langName" => "Webinar"
    "bcobjectcode" => "webinar"
    "displayId" => "webinarDisplayId"
    "displayName" => "webinarDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:27 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "title" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "active" => array:12 [ …12]
      "hidden" => array:12 [ …12]
      "is_done" => array:12 [ …12]
      "time_date" => array:12 [ …12]
      "time_from" => array:12 [ …12]
      "time_to" => array:12 [ …12]
      "place" => array:12 [ …12]
      "description" => array:12 [ …12]
      "matnumber" => array:12 [ …12]
      "fph_number" => array:12 [ …12]
      "course_number" => array:12 [ …12]
      "webinar_image" => array:12 [ …12]
      "without_zoom" => array:12 [ …12]
      "speaker" => array:12 [ …12]
      "accreditation" => array:12 [ …12]
      "dates" => array:12 [ …12]
      "agenda" => array:12 [ …12]
      "form_id" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_webinar"
    "sqlName" => "t1.name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "formconditionalfield" => array:21 [
    "bcname" => "formconditionalfield"
    "bcpath" => "formconditionalfield"
    "name" => "formconditionalfieldbuscomp.class.php"
    "langName" => "Formconditionalfield"
    "bcobjectcode" => "formconditionalfield"
    "displayId" => "formconditionalfieldDisplayId"
    "displayName" => "formconditionalfieldDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "form_uuid" => array:12 [ …12]
      "form_field_group_uuid" => array:12 [ …12]
      "form_field_value_group_uuid" => array:12 [ …12]
      "form_conditional_field_group_uuid" => array:12 [ …12]
      "action" => array:12 [ …12]
      "position" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formconditionalfield"
    "sqlName" => "t1.form_field_value_uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "cmscomponent" => array:21 [
    "bcname" => "cmscomponent"
    "bcpath" => "cmscomponent"
    "name" => "cmscomponentbuscomp.class.php"
    "langName" => "Cmscomponent"
    "bcobjectcode" => "cmscomponent"
    "displayId" => "cmscomponentDisplayId"
    "displayName" => "cmscomponentDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:49 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "page_uuid" => array:12 [ …12]
      "parent_component_uuid" => array:12 [ …12]
      "component" => array:12 [ …12]
      "type" => array:12 [ …12]
      "marginX" => array:12 [ …12]
      "marginY" => array:12 [ …12]
      "marginTop" => array:12 [ …12]
      "marginBottom" => array:12 [ …12]
      "marginLeft" => array:12 [ …12]
      "marginRight" => array:12 [ …12]
      "paddingX" => array:12 [ …12]
      "paddingY" => array:12 [ …12]
      "paddingTop" => array:12 [ …12]
      "paddingBottom" => array:12 [ …12]
      "paddingLeft" => array:12 [ …12]
      "paddingRight" => array:12 [ …12]
      "alignment" => array:12 [ …12]
      "font" => array:12 [ …12]
      "fontSize" => array:12 [ …12]
      "textTransform" => array:12 [ …12]
      "textDecoration" => array:12 [ …12]
      "width" => array:12 [ …12]
      "height" => array:12 [ …12]
      "color" => array:12 [ …12]
      "hoverColor" => array:12 [ …12]
      "backgroundColor" => array:12 [ …12]
      "hoverBackgroundColor" => array:12 [ …12]
      "borderColor" => array:12 [ …12]
      "hoverBorderColor" => array:12 [ …12]
      "backgroundImage" => array:12 [ …12]
      "borderRadius" => array:12 [ …12]
      "gapX" => array:12 [ …12]
      "gapY" => array:12 [ …12]
      "justifyContent" => array:12 [ …12]
      "alignItems" => array:12 [ …12]
      "form_uuid" => array:12 [ …12]
      "buttonColor" => array:12 [ …12]
      "buttonBackgroundColor" => array:12 [ …12]
      "boxShadow" => array:12 [ …12]
      "boxShadowColor" => array:12 [ …12]
      "overlay" => array:12 [ …12]
      "target" => array:12 [ …12]
      "position" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_cmscomponent"
    "sqlName" => "t1.uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "design" => array:21 [
    "bcname" => "design"
    "bcpath" => "design"
    "name" => "designbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "design"
    "displayId" => "designDisplayId"
    "displayName" => "designDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:19 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "backgroundDesktop" => array:12 [ …12]
      "rebateActiveHeadingFontColor" => array:12 [ …12]
      "rebateActiveBackgroundColor" => array:12 [ …12]
      "rebateActiveTextColor" => array:12 [ …12]
      "rebateInactiveHeadingFontColor" => array:12 [ …12]
      "rebateInactiveBackgroundColor" => array:12 [ …12]
      "rebateInactiveTextColor" => array:12 [ …12]
      "productTableHeaderBackgroundColor" => array:12 [ …12]
      "productTableHeaderFontColor" => array:12 [ …12]
      "productTableHeaderButtonColor" => array:12 [ …12]
      "createdByLogin" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_design"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "canton" => array:21 [
    "bcname" => "canton"
    "bcpath" => "canton"
    "name" => "cantonbuscomp.class.php"
    "langName" => "Canton"
    "bcobjectcode" => "canton"
    "displayId" => "cantonDisplayId"
    "displayName" => "cantonDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "short" => array:12 [ …12]
      "name_de" => array:12 [ …12]
      "name_fr" => array:12 [ …12]
      "name_it" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_canton"
    "sqlName" => "CONCAT(t1.short, CONCAT(' - ', t1.name_de))"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "companychain" => array:21 [
    "bcname" => "companychain"
    "bcpath" => "companychain"
    "name" => "companychainbuscomp.class.php"
    "langName" => "Companychain"
    "bcobjectcode" => "companychain"
    "displayId" => "companychainDisplayId"
    "displayName" => "companychainDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "active" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_companychain"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "offerpopup" => array:21 [
    "bcname" => "offerpopup"
    "bcpath" => "offerpopup"
    "name" => "offerpopupbuscomp.class.php"
    "langName" => "Offerpopup"
    "bcobjectcode" => "offerpopup"
    "displayId" => "offerpopupDisplayId"
    "displayName" => "offerpopupDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "offer" => array:12 [ …12]
      "offerRule" => array:12 [ …12]
      "language" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_offerpopup"
    "sqlName" => "t1.offer_rule_id"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "formfieldvalue" => array:21 [
    "bcname" => "formfieldvalue"
    "bcpath" => "formfieldvalue"
    "name" => "formfieldvaluebuscomp.class.php"
    "langName" => "Formfieldvalue"
    "bcobjectcode" => "formfieldvalue"
    "displayId" => "formfieldvalueDisplayId"
    "displayName" => "formfieldvalueDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "form_field_uuid" => array:12 [ …12]
      "group_uuid" => array:12 [ …12]
      "value" => array:12 [ …12]
      "position" => array:12 [ …12]
      "info" => array:12 [ …12]
      "correct_answer" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formfieldvalue"
    "sqlName" => "t1.form_field_uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "formmailconfirmation" => array:21 [
    "bcname" => "formmailconfirmation"
    "bcpath" => "formmailconfirmation"
    "name" => "formmailconfirmationbuscomp.class.php"
    "langName" => "Formmailconfirmation"
    "bcobjectcode" => "formmailconfirmation"
    "displayId" => "formmailconfirmationDisplayId"
    "displayName" => "formmailconfirmationDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "form_uuid" => array:12 [ …12]
      "mailtemplate_uuid" => array:12 [ …12]
      "recipient_type" => array:12 [ …12]
      "recipient_email" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formmailconfirmation"
    "sqlName" => "t1.uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "wholesaler" => array:21 [
    "bcname" => "wholesaler"
    "bcpath" => "wholesaler"
    "name" => "wholesalerbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "wholesaler"
    "displayId" => "wholesalerDisplayId"
    "displayName" => "wholesalerDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "active" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_wholesaler"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "languagecomponent" => array:21 [
    "bcname" => "languagecomponent"
    "bcpath" => "languagecomponent"
    "name" => "languagecomponentbuscomp.class.php"
    "langName" => "Languagecomponent"
    "bcobjectcode" => "languagecomponent"
    "displayId" => "languagecomponentDisplayId"
    "displayName" => "languagecomponentDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:13 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "language" => array:12 [ …12]
      "content" => array:12 [ …12]
      "field" => array:12 [ …12]
      "entityId" => array:12 [ …12]
      "internalcategory" => array:12 [ …12]
      "moduleId" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_languagecomponent"
    "sqlName" => "CONCAT(CONCAT(t1.field, ' - '), t1.language)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "zoomregistration" => array:21 [
    "bcname" => "zoomregistration"
    "bcpath" => "zoomregistration"
    "name" => "zoomregistrationbuscomp.class.php"
    "langName" => "Zoomregistration"
    "bcobjectcode" => "zoomregistration"
    "displayId" => "zoomregistrationDisplayId"
    "displayName" => "zoomregistrationDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:9 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "role" => array:12 [ …12]
      "zoomId" => array:12 [ …12]
      "zoomWebinarId" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_zoomregistration"
    "sqlName" => "t1.integration_id"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "cmsupload" => array:21 [
    "bcname" => "cmsupload"
    "bcpath" => "cmsupload"
    "name" => "cmsuploadbuscomp.class.php"
    "langName" => "Cmsupload"
    "bcobjectcode" => "cmsupload"
    "displayId" => "cmsuploadDisplayId"
    "displayName" => "cmsuploadDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "file_name" => array:12 [ …12]
      "file_size" => array:12 [ …12]
      "file_type" => array:12 [ …12]
      "file_path" => array:12 [ …12]
      "upload_type" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_cmsupload"
    "sqlName" => "t1.file_name"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "cmsmenulink" => array:21 [
    "bcname" => "cmsmenulink"
    "bcpath" => "cmsmenulink"
    "name" => "cmsmenulinkbuscomp.class.php"
    "langName" => "Cmsmenulink"
    "bcobjectcode" => "cmsmenulink"
    "displayId" => "cmsmenulinkDisplayId"
    "displayName" => "cmsmenulinkDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "page_uuid" => array:12 [ …12]
      "target" => array:12 [ …12]
      "visibility" => array:12 [ …12]
      "position" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_cmsmenulink"
    "sqlName" => "t1.uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "offerruleoptionitem" => array:21 [
    "bcname" => "offerruleoptionitem"
    "bcpath" => "offerruleoptionitem"
    "name" => "offerruleoptionitembuscomp.class.php"
    "langName" => "Offerruleoptionitem"
    "bcobjectcode" => "offerruleoptionitem"
    "displayId" => "offerruleoptionitemDisplayId"
    "displayName" => "offerruleoptionitemDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "offerRuleOption" => array:12 [ …12]
      "checkFor" => array:12 [ …12]
      "value" => array:12 [ …12]
      "product" => array:12 [ …12]
      "type" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_offerruleoptionitem"
    "sqlName" => "t1.offer_rule_option_id"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "offer" => array:21 [
    "bcname" => "offer"
    "bcpath" => "offer"
    "name" => "offerbuscomp.class.php"
    "langName" => "Offer"
    "bcobjectcode" => "offer"
    "displayId" => "offerDisplayId"
    "displayName" => "offerDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:20 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "name" => array:12 [ …12]
      "slug" => array:12 [ …12]
      "startTime" => array:12 [ …12]
      "endTime" => array:12 [ …12]
      "design" => array:12 [ …12]
      "status" => array:12 [ …12]
      "offerLink" => array:12 [ …12]
      "offerProduct" => array:12 [ …12]
      "offerRule" => array:12 [ …12]
      "offerPopup" => array:12 [ …12]
      "language" => array:12 [ …12]
      "filterCanton" => array:12 [ …12]
      "filterLocationCode" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_offer"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "form" => array:21 [
    "bcname" => "form"
    "bcpath" => "form"
    "name" => "formbuscomp.class.php"
    "langName" => "Form"
    "bcobjectcode" => "form"
    "displayId" => "formDisplayId"
    "displayName" => "formDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:15 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "name" => array:12 [ …12]
      "type" => array:12 [ …12]
      "lang_de" => array:12 [ …12]
      "lang_fr" => array:12 [ …12]
      "lang_it" => array:12 [ …12]
      "multiple_submit" => array:12 [ …12]
      "returnurl" => array:12 [ …12]
      "returnurl_error" => array:12 [ …12]
      "external_embedding" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_form"
    "sqlName" => "CONCAT(t1.name, ' - ', (CASE WHEN t1.lang_de = 1 THEN '(DE) ' ELSE '' END), (CASE WHEN t1.lang_fr = 1 THEN '(FR) ' ELSE '' END), (CASE WHEN t1.lang_it = 1 THEN '(IT) ' ELSE '' END))"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "formstore" => array:21 [
    "bcname" => "formstore"
    "bcpath" => "formstore"
    "name" => "formstorebuscomp.class.php"
    "langName" => "Formstore"
    "bcobjectcode" => "formstore"
    "displayId" => "formstoreDisplayId"
    "displayName" => "formstoreDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:18 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "uuid" => array:12 [ …12]
      "form_uuid" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "type" => array:12 [ …12]
      "parent_uuid" => array:12 [ …12]
      "email" => array:12 [ …12]
      "first_name" => array:12 [ …12]
      "last_name" => array:12 [ …12]
      "zoom_id" => array:12 [ …12]
      "zoom_api_id" => array:12 [ …12]
      "zoom_link" => array:12 [ …12]
      "zoom_role" => array:12 [ …12]
      "result" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_formstore"
    "sqlName" => "t1.form_uuid"
    "slimBc" => true
    "coreModule" => false
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "orderitem" => array:21 [
    "bcname" => "orderitem"
    "bcpath" => "orderitem"
    "name" => "orderitembuscomp.class.php"
    "langName" => "Orderitem"
    "bcobjectcode" => "orderitem"
    "displayId" => "orderitemDisplayId"
    "displayName" => "orderitemDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:14 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "order" => array:12 [ …12]
      "product" => array:12 [ …12]
      "dateDelivery" => array:12 [ …12]
      "wholesaler" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "quantity" => array:12 [ …12]
      "price" => array:12 [ …12]
      "customer" => array:12 [ …12]
      "ocVersion" => array:12 [ …12]
    ]
    "displayModes" => array:4 [
      0 => 0
      1 => 1
      2 => 2
      3 => 4
    ]
    "tableName" => "icrm_orderitem"
    "sqlName" => "CONCAT( (SELECT name from icrm_product p where p.id = t1.product_id), " - ", t1.created)"
    "slimBc" => false
    "coreModule" => false
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "iform" => array:21 [
    "bcname" => "iform"
    "bcpath" => "iform"
    "name" => "iformbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "iform"
    "displayId" => "iformDisplayId"
    "displayName" => "iformDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "processname" => array:12 [ …12]
      "name" => array:12 [ …12]
      "header" => array:12 [ …12]
      "status" => array:12 [ …12]
      "redirectbehavior" => array:12 [ …12]
      "redirecturl" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_iform"
    "sqlName" => "CONCAT(CONCAT(t1.name, ' - '), t1.created)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "aclright" => array:21 [
    "bcname" => "aclright"
    "bcpath" => "aclright"
    "name" => "aclrightbuscomp.class.php"
    "langName" => "Aclright"
    "bcobjectcode" => "aclright"
    "displayId" => "aclrightDisplayId"
    "displayName" => "aclrightDisplayName"
    "displayNameField" => null
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => null
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "nameDeu" => array:12 [ …12]
      "nameEnu" => array:12 [ …12]
      "technicalName" => array:12 [ …12]
      "module" => array:12 [ …12]
      "accessRight" => array:12 [ …12]
      "customRight" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_acl_right"
    "sqlName" => "t1.name_deu"
    "slimBc" => true
    "coreModule" => true
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "lovlist" => array:21 [
    "bcname" => "lovlist"
    "bcpath" => "lovlist"
    "name" => "lovlistbuscomp.class.php"
    "langName" => "LOV-Lists"
    "bcobjectcode" => "lovlist"
    "displayId" => "lovlistDisplayId"
    "displayName" => "lovlistDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:11 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "moduleName" => array:12 [ …12]
      "colName" => array:12 [ …12]
      "code" => array:12 [ …12]
      "lang" => array:12 [ …12]
      "status" => array:12 [ …12]
      "translation" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_lovlist"
    "sqlName" => "t1.table_name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "multicheck" => array:21 [
    "bcname" => "multicheck"
    "bcpath" => "multicheck"
    "name" => "multicheckbuscomp.class.php"
    "langName" => "Custom Multicheck Radios and Checkboxes"
    "bcobjectcode" => "multicheck"
    "displayId" => "multicheckDisplayId"
    "displayName" => "multicheckDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:18 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "module" => array:12 [ …12]
      "field" => array:12 [ …12]
      "language" => array:12 [ …12]
      "position" => array:12 [ …12]
      "title" => array:12 [ …12]
      "description" => array:12 [ …12]
      "visible" => array:12 [ …12]
      "titleActive" => array:12 [ …12]
      "titleInactive" => array:12 [ …12]
      "descriptionActive" => array:12 [ …12]
      "descriptionInactive" => array:12 [ …12]
      "attachmentTitleActive" => array:12 [ …12]
      "attachmentTitleInActive" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_multicheck"
    "sqlName" => "CONCAT(t1.module, " - ", t1.field)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "audittrail" => array:21 [
    "bcname" => "audittrail"
    "bcpath" => "audittrail"
    "name" => "audittrailbuscomp.class.php"
    "langName" => "Audit-Trail"
    "bcobjectcode" => "audittrail"
    "displayId" => "audittrailDisplayId"
    "displayName" => "audittrailDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:12 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "moduleName" => array:12 [ …12]
      "colName" => array:12 [ …12]
      "oldVal" => array:12 [ …12]
      "newVal" => array:12 [ …12]
      "date" => array:12 [ …12]
      "user" => array:12 [ …12]
      "rowID" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_audit_trial"
    "sqlName" => "t1.table_name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "kanban" => array:21 [
    "bcname" => "kanban"
    "bcpath" => "kanban"
    "name" => "kanbanbuscomp.class.php"
    "langName" => "Kanban Boards"
    "bcobjectcode" => "kanban"
    "displayId" => "kanbanDisplayId"
    "displayName" => "kanbanDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:14 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "prefix" => array:12 [ …12]
      "module" => array:12 [ …12]
      "field" => array:12 [ …12]
      "title" => array:12 [ …12]
      "description" => array:12 [ …12]
      "priority" => array:12 [ …12]
      "kanbanColor" => array:12 [ …12]
      "userReference" => array:12 [ …12]
      "default" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_kanban"
    "sqlName" => "CONCAT(t1.prefix, " - ", t1.module)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "tooltip" => array:21 [
    "bcname" => "tooltip"
    "bcpath" => "tooltip"
    "name" => "tooltipbuscomp.class.php"
    "langName" => "Tooltip Boards"
    "bcobjectcode" => "tooltip"
    "displayId" => "tooltipDisplayId"
    "displayName" => "tooltipDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:10 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "module" => array:12 [ …12]
      "field" => array:12 [ …12]
      "language" => array:12 [ …12]
      "type" => array:12 [ …12]
      "content" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_tooltip"
    "sqlName" => "CONCAT(t1.module, " - ", t1.field)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "useractivities" => array:21 [
    "bcname" => "useractivities"
    "bcpath" => "useractivities"
    "name" => "useractivitiesbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "useractivities"
    "displayId" => "useractivitiesDisplayId"
    "displayName" => "useractivitiesDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [
      0 => ""
    ]
    "ischildof" => false
    "fields" => array:14 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "integrationId" => array:12 [ …12]
      "timestamp" => array:12 [ …12]
      "user" => array:12 [ …12]
      "ip" => array:12 [ …12]
      "client" => array:12 [ …12]
      "url" => array:12 [ …12]
      "activity" => array:12 [ …12]
      "activityId" => array:12 [ …12]
      "login" => array:12 [ …12]
    ]
    "displayModes" => array:1 [
      0 => 4
    ]
    "tableName" => "icrm_useractivities"
    "sqlName" => "t1.timestamp - t1.ip"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "elmanager" => array:21 [
    "bcname" => "elmanager"
    "bcpath" => "elmanager"
    "name" => "elmanagerbuscomp.class.php"
    "langName" => "Searchqueries"
    "bcobjectcode" => "elmanager"
    "displayId" => "elmanagerDisplayId"
    "displayName" => "elmanagerDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:13 [
      "id" => array:12 [ …12]
      "created" => array:12 [ …12]
      "createdBy" => array:12 [ …12]
      "updated" => array:12 [ …12]
      "updatedBy" => array:12 [ …12]
      "name" => array:12 [ …12]
      "user" => array:12 [ …12]
      "jsonString" => array:12 [ …12]
       …5
    ]
    "displayModes" => array:2 [ …2]
    "tableName" => "icrm_elmanager"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "roles" => array:21 [
    "bcname" => "roles"
    "bcpath" => "roles"
    "name" => "rolesbuscomp.class.php"
    "langName" => "Roles"
    "bcobjectcode" => "roles"
    "displayId" => "roleDisplayId"
    "displayName" => "roleDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:8 [ …8]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_role"
    "sqlName" => "t1.name_enu"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "rights" => array:21 [
    "bcname" => "rights"
    "bcpath" => "rights"
    "name" => "rightsbuscomp.class.php"
    "langName" => "Rights"
    "bcobjectcode" => "rights"
    "displayId" => "rightDisplayId"
    "displayName" => "rightDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:15 [ …15]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_rights"
    "sqlName" => "t1.technical_name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "asset" => array:21 [
    "bcname" => "asset"
    "bcpath" => "asset"
    "name" => "assetbuscomp.class.php"
    "langName" => "Assets"
    "bcobjectcode" => "asset"
    "displayId" => "assetDisplayId"
    "displayName" => "assetDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [ …1]
    "ischildof" => false
    "fields" => array:15 [ …15]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_asset"
    "sqlName" => "CONCAT(t1.object_title)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => true
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "applicationuser" => array:21 [
    "bcname" => "applicationuser"
    "bcpath" => "logon"
    "name" => "applicationuserbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "applicationUser"
    "displayId" => null
    "displayName" => null
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:12 [ …12]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_user"
    "sqlName" => ""
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "aclrole" => array:21 [
    "bcname" => "aclrole"
    "bcpath" => "aclrole"
    "name" => "aclrolebuscomp.class.php"
    "langName" => "Aclrole"
    "bcobjectcode" => "aclrole"
    "displayId" => "aclroleDisplayId"
    "displayName" => "aclroleDisplayName"
    "displayNameField" => null
    "relations" => array:1 [ …1]
    "ischildof" => null
    "fields" => array:8 [ …8]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_acl_role"
    "sqlName" => "t1.name_deu"
    "slimBc" => true
    "coreModule" => true
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
  ]
  "formdisplay" => array:21 [
    "bcname" => "formdisplay"
    "bcpath" => "formdisplay"
    "name" => "formdisplaybuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "formdisplay"
    "displayId" => "formdisplayDisplayId"
    "displayName" => "formdisplayDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [ …1]
    "ischildof" => false
    "fields" => array:9 [ …9]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_ilumeform"
    "sqlName" => "t1.id"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "deletecontrol" => array:21 [
    "bcname" => "deletecontrol"
    "bcpath" => "deletecontrol"
    "name" => "deletecontrolbuscomp.class.php"
    "langName" => "DSGVO Settings"
    "bcobjectcode" => "deletecontrol"
    "displayId" => "deletecontrolDisplayId"
    "displayName" => "deletecontrolDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [ …1]
    "ischildof" => false
    "fields" => array:12 [ …12]
    "displayModes" => array:4 [ …4]
    "tableName" => "icrm_deletecontrol"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "searchquery" => array:21 [
    "bcname" => "searchquery"
    "bcpath" => "searchquery"
    "name" => "searchquerybuscomp.class.php"
    "langName" => "Searchqueries"
    "bcobjectcode" => "searchquery"
    "displayId" => "searchqueryDisplayId"
    "displayName" => "searchqueryDisplayName"
    "displayNameField" => "name"
    "relations" => []
    "ischildof" => false
    "fields" => array:12 [ …12]
    "displayModes" => array:2 [ …2]
    "tableName" => "icrm_searchquery"
    "sqlName" => "t1.name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "playground" => array:21 [
    "bcname" => "playground"
    "bcpath" => "playground"
    "name" => "dummy"
    "langName" => "playground"
    "bcobjectcode" => "playground"
    "displayId" => "playground"
    "displayName" => "playground"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "playground"
    "sqlName" => "playground"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "bootstrapper" => array:21 [
    "bcname" => "bootstrapper"
    "bcpath" => "bootstrapper"
    "name" => "dummy"
    "langName" => "bootstrapper"
    "bcobjectcode" => "bootstrapper"
    "displayId" => "bootstrapper"
    "displayName" => "bootstrapper"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "bootstrapper"
    "sqlName" => "bootstrapper"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "frontend" => array:21 [
    "bcname" => "frontend"
    "bcpath" => "frontend"
    "name" => "dummy"
    "langName" => "frontend"
    "bcobjectcode" => "frontend"
    "displayId" => "frontend"
    "displayName" => "frontend"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "frontend"
    "sqlName" => "frontend"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "formdesigner" => array:21 [
    "bcname" => "formdesigner"
    "bcpath" => "formdesigner"
    "name" => "dummy"
    "langName" => "formdesigner"
    "bcobjectcode" => "formdesigner"
    "displayId" => "formdesigner"
    "displayName" => "formdesigner"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "formdesigner"
    "sqlName" => "formdesigner"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "certificate" => array:21 [
    "bcname" => "certificate"
    "bcpath" => "certificate"
    "name" => "dummy"
    "langName" => "certificate"
    "bcobjectcode" => "certificate"
    "displayId" => "certificate"
    "displayName" => "certificate"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "certificate"
    "sqlName" => "certificate"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "modulemanager" => array:21 [
    "bcname" => "modulemanager"
    "bcpath" => "modulemanager"
    "name" => "dummy"
    "langName" => "modulemanager"
    "bcobjectcode" => "modulemanager"
    "displayId" => "modulemanager"
    "displayName" => "modulemanager"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "modulemanager"
    "sqlName" => "modulemanager"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "cms" => array:21 [
    "bcname" => "cms"
    "bcpath" => "cms"
    "name" => "dummy"
    "langName" => "cms"
    "bcobjectcode" => "cms"
    "displayId" => "cms"
    "displayName" => "cms"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "cms"
    "sqlName" => "cms"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "logs" => array:21 [
    "bcname" => "logs"
    "bcpath" => "logs"
    "name" => "dummy"
    "langName" => "logs"
    "bcobjectcode" => "logs"
    "displayId" => "logs"
    "displayName" => "logs"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "logs"
    "sqlName" => "logs"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
  "config" => array:21 [
    "bcname" => "config"
    "bcpath" => "config"
    "name" => "dummy"
    "langName" => "config"
    "bcobjectcode" => "config"
    "displayId" => "config"
    "displayName" => "config"
    "displayNameField" => "null"
    "relations" => []
    "ischildof" => null
    "fields" => null
    "displayModes" => array:1 [ …1]
    "tableName" => "config"
    "sqlName" => "config"
    "slimBc" => null
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => null
  ]
]
IBCS
array:40 [
  "OfferruleoptionBusComp" => OfferruleoptionBusComp {#33}
  "BrandBusComp" => BrandBusComp {#31}
  "FaqBusComp" => FaqBusComp {#34}
  "LoginheroBusComp" => LoginheroBusComp {#37}
  "PageBusComp" => PageBusComp {#36}
  "TerritoryBusComp" => TerritoryBusComp {#39}
  "TestBusComp" => TestBusComp {#38}
  "ProductBusComp" => ProductBusComp {#35}
  "LanguageBusComp" => LanguageBusComp {#40}
  "OfferruleBusComp" => OfferruleBusComp {#43}
  "AllfieldsBusComp" => AllfieldsBusComp {#42}
  "UserBusComp" => UserBusComp {#45}
  "UserMyProfileBusComp" => UserMyProfileBusComp {#44}
  "OrderBusComp" => OrderBusComp {#47}
  "OfferitemBusComp" => OfferitemBusComp {#41}
  "MailtemplateBusComp" => MailtemplateBusComp {#49}
  "DesignBusComp" => DesignBusComp {#50}
  "CantonBusComp" => CantonBusComp {#51}
  "CompanychainBusComp" => CompanychainBusComp {#52}
  "OfferpopupBusComp" => OfferpopupBusComp {#53}
  "WholesalerBusComp" => WholesalerBusComp {#54}
  "LanguagecomponentBusComp" => LanguagecomponentBusComp {#55}
  "OfferruleoptionitemBusComp" => OfferruleoptionitemBusComp {#48}
  "OfferBusComp" => OfferBusComp {#57}
  "OrderitemBusComp" => OrderitemBusComp {#58}
  "IformBusComp" => IformBusComp {#59}
  "LovlistBusComp" => LovlistBusComp {#56}
  "MulticheckBusComp" => MulticheckBusComp {#61}
  "AudittrailBusComp" => AudittrailBusComp {#62}
  "KanbanBusComp" => KanbanBusComp {#63}
  "TooltipBusComp" => TooltipBusComp {#64}
  "UseractivitiesBusComp" => UseractivitiesBusComp {#65}
  "ElmanagerBusComp" => ElmanagerBusComp {#66}
  "RolesBusComp" => RolesBusComp {#67}
  "RightsBusComp" => RightsBusComp {#68}
  "AssetBusComp" => AssetBusComp {#69}
  "ApplicationUserBusComp" => ApplicationUserBusComp {#70}
  "FormdisplayBusComp" => FormdisplayBusComp {#60}
  "DeletecontrolBusComp" => DeletecontrolBusComp {#72}
  "SearchqueryBusComp" => SearchqueryBusComp {#73}
]
BCREGISTRYCALLED
true
BCREGISTRYNAMEDROUTES
true
suc_token
array:1 [
  "ffbb4a5deffda534a9acf76c4ca1d246" => 1713596259
]
blade
mySucBlade {#20}
ADMINSETTINGS_QRINTEGRATION
null
ADMINSETTINGSCALLED
true
LOGIN_URL
"/it/menzioni-legali/"
Key Value
USER
"vasily"
HOME
"/var/www/vhosts/marketplace.sanoficonnect.ch"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/it/menzioni-legali/"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/it/menzioni-legali/"
REMOTE_PORT
"30429"
SCRIPT_FILENAME
"/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace/index.php"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace"
REMOTE_ADDR
"18.220.126.5"
SERVER_PORT
"443"
SERVER_ADDR
"85.214.47.146"
SERVER_NAME
"www.sanoficonnect.ch"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
"<address>Apache Server at www.sanoficonnect.ch Port 443</address>\n"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
HTTP_HOST
"www.sanoficonnect.ch"
HTTP_REFERER
"https://marketplace.sanoficonnect.ch/it/menzioni-legali/"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT
"*/*"
proxy-nokeepalive
"1"
SSL_TLS_SNI
"www.sanoficonnect.ch"
HTTPS
"on"
PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY
"0"
PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY
"0"
HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
REDIRECT_SSL_TLS_SNI
"www.sanoficonnect.ch"
REDIRECT_HTTPS
"on"
REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY
"0"
REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY
"0"
REDIRECT_HTTP_AUTHORIZATION
""
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1713595659.01
REQUEST_TIME
1713595659
empty
0. Whoops\Handler\PrettyPageHandler