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
Key Value
PHPSESSID
"5ou205uu2fe5cpg8ks6357e8po"
Key Value
isLogged
true
timeout
1715925874
lang
"ENU"
skinName
"scrm"
ADMINSETTINGS_BUSINESSYEAR
"3"
userId
-1
HTTP_USER_AGENT
"fac378ac3b3d3886829021b3309d4fd1"
USER_ADDRESS
"695a204bd0548bf41b44044db075251b"
login
"public"
firstName
"public"
lastName
"public"
userType
"public"
emailAddress
""
accountName
""
accountCode
""
accountId
""
login_time_stamp
1715925875
AttachmentDeleteMode
1
CMSSUBLOGINSET
true
userRole
null
MODELCACHEFILLED
true
ROUTERCACHEFILLED
true
BCREGISTRY
array:70 [
  "cmslanguage" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/cmslanguage/routes/CmslanguageRoutes.php"
      "name" => "cmslanguage"
    ]
  ]
  "locationcode" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/locationcode/routes/LocationcodeRoutes.php"
      "name" => "locationcode"
    ]
  ]
  "offerruleoption" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offerruleoption/routes/OfferruleoptionRoutes.php"
      "name" => "offerruleoption"
    ]
  ]
  "zoomwebinar" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/zoomwebinar/routes/ZoomwebinarRoutes.php"
      "name" => "zoomwebinar"
    ]
  ]
  "brand" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/brand/routes/BrandRoutes.php"
      "name" => "brand"
    ]
  ]
  "userblacklist" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/userblacklist/routes/UserblacklistRoutes.php"
      "name" => "userblacklist"
    ]
  ]
  "faq" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/faq/routes/FaqRoutes.php"
      "name" => "faq"
    ]
  ]
  "loginhero" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/loginhero/routes/LoginheroRoutes.php"
      "name" => "loginhero"
    ]
  ]
  "page" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/page/routes/PageRoutes.php"
      "name" => "page"
    ]
  ]
  "territory" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/territory/routes/TerritoryRoutes.php"
      "name" => "territory"
    ]
  ]
  "test" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/test/routes/TestRoutes.php"
      "name" => "test"
    ]
  ]
  "formstorevalue" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formstorevalue/routes/FormstorevalueRoutes.php"
      "name" => "formstorevalue"
    ]
  ]
  "producttraining" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/producttraining/routes/ProducttrainingRoutes.php"
      "name" => "producttraining"
    ]
  ]
  "cmspage" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/cmspage/routes/CmspageRoutes.php"
      "name" => "cmspage"
    ]
  ]
  "product" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/product/routes/ProductRoutes.php"
      "name" => "product"
    ]
  ]
  "language" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/language/routes/LanguageRoutes.php"
      "name" => "language"
    ]
  ]
  "offerrule" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offerrule/routes/OfferruleRoutes.php"
      "name" => "offerrule"
    ]
  ]
  "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:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/user/routes/UserRoutes.php"
      "name" => "user"
    ]
  ]
  "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:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/order/routes/OrderRoutes.php"
      "name" => "order"
    ]
  ]
  "formfield" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formfield/routes/FormfieldRoutes.php"
      "name" => "formfield"
    ]
  ]
  "offeritem" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offeritem/routes/OfferitemRoutes.php"
      "name" => "offeritem"
    ]
  ]
  "mailtemplate" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/mailtemplate/routes/MailtemplateRoutes.php"
      "name" => "mailtemplate"
    ]
  ]
  "elearning" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/elearning/routes/ElearningRoutes.php"
      "name" => "elearning"
    ]
  ]
  "webinar" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/webinar/routes/WebinarRoutes.php"
      "name" => "webinar"
    ]
  ]
  "formconditionalfield" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formconditionalfield/routes/FormconditionalfieldRoutes.php"
      "name" => "formconditionalfield"
    ]
  ]
  "cmscomponent" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/cmscomponent/routes/CmscomponentRoutes.php"
      "name" => "cmscomponent"
    ]
  ]
  "design" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/design/routes/DesignRoutes.php"
      "name" => "design"
    ]
  ]
  "canton" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/canton/routes/CantonRoutes.php"
      "name" => "canton"
    ]
  ]
  "companychain" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/companychain/routes/CompanychainRoutes.php"
      "name" => "companychain"
    ]
  ]
  "offerpopup" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offerpopup/routes/OfferpopupRoutes.php"
      "name" => "offerpopup"
    ]
  ]
  "formfieldvalue" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formfieldvalue/routes/FormfieldvalueRoutes.php"
      "name" => "formfieldvalue"
    ]
  ]
  "formmailconfirmation" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formmailconfirmation/routes/FormmailconfirmationRoutes.php"
      "name" => "formmailconfirmation"
    ]
  ]
  "wholesaler" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/wholesaler/routes/WholesalerRoutes.php"
      "name" => "wholesaler"
    ]
  ]
  "languagecomponent" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/languagecomponent/routes/LanguagecomponentRoutes.php"
      "name" => "languagecomponent"
    ]
  ]
  "zoomregistration" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/zoomregistration/routes/ZoomregistrationRoutes.php"
      "name" => "zoomregistration"
    ]
  ]
  "cmsupload" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/cmsupload/routes/CmsuploadRoutes.php"
      "name" => "cmsupload"
    ]
  ]
  "cmsmenulink" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/cmsmenulink/routes/CmsmenulinkRoutes.php"
      "name" => "cmsmenulink"
    ]
  ]
  "offerruleoptionitem" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offerruleoptionitem/routes/OfferruleoptionitemRoutes.php"
      "name" => "offerruleoptionitem"
    ]
  ]
  "offer" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/offer/routes/OfferRoutes.php"
      "name" => "offer"
    ]
  ]
  "form" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/form/routes/FormRoutes.php"
      "name" => "form"
    ]
  ]
  "formstore" => array:22 [
    "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
    "routes" => array:2 [
      "fullPath" => "/var/www/vhosts/marketplace.sanoficonnect.ch/marketplace//modules/formstore/routes/FormstoreRoutes.php"
      "name" => "formstore"
    ]
  ]
  "orderitem" => array:22 [
    "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]
       …9
    ]
    "displayModes" => array:4 [ …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
    "routes" => array:2 [ …2]
  ]
  "iform" => array:21 [
    "bcname" => "iform"
    "bcpath" => "iform"
    "name" => "iformbuscomp.class.php"
    "langName" => ""
    "bcobjectcode" => "iform"
    "displayId" => "iformDisplayId"
    "displayName" => "iformDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [ …1]
    "ischildof" => false
    "fields" => array:11 [ …11]
    "displayModes" => array:1 [ …1]
    "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:22 [
    "bcname" => "aclright"
    "bcpath" => "aclright"
    "name" => "aclrightbuscomp.class.php"
    "langName" => "Aclright"
    "bcobjectcode" => "aclright"
    "displayId" => "aclrightDisplayId"
    "displayName" => "aclrightDisplayName"
    "displayNameField" => null
    "relations" => array:1 [ …1]
    "ischildof" => null
    "fields" => array:12 [ …12]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_acl_right"
    "sqlName" => "t1.name_deu"
    "slimBc" => true
    "coreModule" => true
    "dynamicTooltip" => null
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
    "routes" => array:2 [ …2]
  ]
  "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 [ …1]
    "ischildof" => false
    "fields" => array:11 [ …11]
    "displayModes" => array:1 [ …1]
    "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 [ …1]
    "ischildof" => false
    "fields" => array:18 [ …18]
    "displayModes" => array:1 [ …1]
    "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 [ …1]
    "ischildof" => false
    "fields" => array:12 [ …12]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_audit_trial"
    "sqlName" => "t1.table_name"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => false
  ]
  "kanban" => array:22 [
    "bcname" => "kanban"
    "bcpath" => "kanban"
    "name" => "kanbanbuscomp.class.php"
    "langName" => "Kanban Boards"
    "bcobjectcode" => "kanban"
    "displayId" => "kanbanDisplayId"
    "displayName" => "kanbanDisplayName"
    "displayNameField" => "name"
    "relations" => array:1 [ …1]
    "ischildof" => false
    "fields" => array:14 [ …14]
    "displayModes" => array:1 [ …1]
    "tableName" => "icrm_kanban"
    "sqlName" => "CONCAT(t1.prefix, " - ", t1.module)"
    "slimBc" => false
    "coreModule" => true
    "dynamicTooltip" => false
    "isProxyBased" => true
    "isDynamicBusComp" => false
    "buildConfig" => []
    "hasForcedLview" => true
    "routes" => array:2 [ …2]
  ]
  "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 [ …1]
    "ischildof" => false
    "fields" => array:10 [ …10]
    "displayModes" => array:1 [ …1]
    "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 [ …1]
    "ischildof" => false
    "fields" => array:14 [ …14]
    "displayModes" => array:1 [ …1]
    "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 [ …13]
    "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:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "asset" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "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:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "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:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "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:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "bootstrapper" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "frontend" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "formdesigner" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "certificate" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "modulemanager" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "cms" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "logs" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
  "config" => array:22 [
    "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
    "routes" => array:2 [ …2]
  ]
]
IBCS
array:41 [
  "OfferruleoptionBusComp" => __PHP_Incomplete_Class(OfferruleoptionBusComp) {#2
    +caption: "offerruleoption"
    +captions: "offerruleoptions"
    +table: "icrm_offerruleoption"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.position ASC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "t1.offer_rule_id"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:1 [ …1]
    +tabs: array:1 [ …1]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: []
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "offerruleoptionDisplayId"
    +displayName: "offerruleoptionDisplayName"
    +modulePath: "offerruleoption"
    +objectCode: "offerruleoption"
    +toolbarButton: "offerruleoptions"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: "Offerruleoption"
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: true
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:10 [ …10]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:3 [ …3]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: false
    +BC_DYNAMIC_TOOLTIP: false
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: false
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: array:1 [ …1]
    +NMConfig: []
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: "deletelink"
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: ""
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: ""
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: array:2 [ …2]
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: true
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +index_attachments: false
    +mixboxlistFieldsWithDrilldown: true
  }
  "BrandBusComp" => __PHP_Incomplete_Class(BrandBusComp) {#3
    +caption: "brand"
    +captions: "brands"
    +table: "icrm_brand"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "t1.name"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:1 [ …1]
    +tabs: array:2 [ …2]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: array:1 [ …1]
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "brandDisplayId"
    +displayName: "brandDisplayName"
    +modulePath: "brand"
    +objectCode: "brand"
    +toolbarButton: "brands"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: "Brand"
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: false
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:11 [ …11]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:2 [ …2]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: false
    +BC_DYNAMIC_TOOLTIP: false
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: false
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: []
    +NMConfig: []
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: "deletelink"
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: ""
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: ""
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: array:2 [ …2]
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: true
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +index_attachments: false
    +mixboxlistFieldsWithDrilldown: true
  }
  "FaqBusComp" => __PHP_Incomplete_Class(FaqBusComp) {#4
    +caption: "faq"
    +captions: "faqs"
    +table: "icrm_faq"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "CONCAT(CONCAT(t1.name, ' - '), t1.created)"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:4 [ …4]
    +tabs: null
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: array:1 [ …1]
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "faqDisplayId"
    +displayName: "faqDisplayName"
    +modulePath: "faq"
    +objectCode: "faq"
    +toolbarButton: "faqs"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: ""
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: false
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:18 [ …18]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:4 [ …4]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: false
    +BC_DYNAMIC_TOOLTIP: false
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: false
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: array:1 [ …1]
    +NMConfig: []
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: "deletelink"
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: array:4 [ …4]
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: ""
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: ""
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: array:2 [ …2]
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: true
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +index_attachments: false
    +mixboxlistFieldsWithDrilldown: true
  }
  "LoginheroBusComp" => __PHP_Incomplete_Class(LoginheroBusComp) {#5
    +caption: "loginhero"
    +captions: "loginheros"
    +table: "icrm_loginhero"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "CONCAT(CONCAT(t1.title, ' - '), t1.created)"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:4 [ …4]
    +tabs: array:1 [ …1]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: array:1 [ …1]
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "loginheroDisplayId"
    +displayName: "loginheroDisplayName"
    +modulePath: "loginhero"
    +objectCode: "loginhero"
    +toolbarButton: "loginheros"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: "Loginhero"
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: true
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:28 [ …28]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:6 [ …6]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: false
    +BC_DYNAMIC_TOOLTIP: false
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: false
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: array:1 [ …1]
    +NMConfig: []
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: "deletelink"
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: ""
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: ""
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: array:2 [ …2]
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: true
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +index_attachments: false
    +mixboxlistFieldsWithDrilldown: true
  }
  "PageBusComp" => __PHP_Incomplete_Class(PageBusComp) {#6
    +caption: "page"
    +captions: "pages"
    +table: "icrm_page"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1 AND t1.user_id = -1"
    +standard_sort_spec: "id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "CONCAT(t1.name_val)"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:1 [ …1]
    +tabs: array:1 [ …1]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: []
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "pageDisplayId"
    +displayName: "pageDisplayName"
    +modulePath: "page"
    +objectCode: "page"
    +toolbarButton: "pages"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: []
    +additionalRelationLinks: []
    +langName: "Pages"
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: array:4 [ …4]
    +useDefaultFormHeader: true
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: true
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:22 [ …22]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:7 [ …7]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: true
    +BC_DYNAMIC_TOOLTIP: true
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: "warning"
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: true
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: array:2 [ …2]
    +NMConfig: []
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: true
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: "dateVal"
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: "dateVal"
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: []
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: []
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +engineTypeSLOV: []
    +mixboxlistFieldsWithDrilldown: true
    +fuelSLOV: array:3 [ …3]
  }
  "TerritoryBusComp" => __PHP_Incomplete_Class(TerritoryBusComp) {#7
    +caption: "territory"
    +captions: "territorys"
    +table: "icrm_territory"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "t1.name"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:1 [ …1]
    +tabs: null
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: array:1 [ …1]
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "territoryDisplayId"
    +displayName: "territoryDisplayName"
    +modulePath: "territory"
    +objectCode: "territory"
    +toolbarButton: "territorys"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: ""
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: false
    +customListButtons: []
    +customFormButtons: []
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: []
    +createRelatedEntities: array:3 [ …3]
    +fields: array:9 [ …9]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:1 [ …1]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: false
    +BC_DYNAMIC_TOOLTIP: false
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: false
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: []
    +NMConfig: array:1 [ …1]
    +ddListConfig: []
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: "editlink"
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: "deletelink"
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: "objecthref"
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "nm_type"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: false
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: []
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: ""
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: null
    +BC_ROADMAP_ENDDATE: null
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: null
    +timeline_calendar_field_date: ""
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: array:2 [ …2]
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: true
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +index_attachments: false
    +mixboxlistFieldsWithDrilldown: true
  }
  "TestBusComp" => __PHP_Incomplete_Class(TestBusComp) {#8
    +caption: "test"
    +captions: "tests"
    +table: "icrm_test"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: " 1 = 1 AND t1.user_id = -1"
    +standard_sort_spec: "id DESC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "CONCAT(t1.string)"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:9 [ …9]
    +tabs: array:1 [ …1]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: []
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "testDisplayId"
    +displayName: "testDisplayName"
    +modulePath: "test"
    +objectCode: "test"
    +toolbarButton: "tests"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
    +isFastSearchBC: false
    +boxlistTemplate: "boxlist"
    +hideDeleteButtonInBoxlist: false
    +pickboxlistTemplate: "picker"
    +timelineTemplate: "timeline"
    +mapTemplate: "map"
    +formTemplate: "form"
    +relations: array:1 [ …1]
    +additionalRelationLinks: []
    +langName: " Test BC"
    +displayNameField: "name"
    +additionalHeaders: ""
    +isChildOf: false
    +isCoreModule: false
    +boxListColumnClass: "col-xs-12"
    +overWrite_search_spec: false
    +revision: false
    +revisionFields: []
    +revisionIndentifier: []
    +revisionUseDefaults: []
    +hasFTS: true
    +hasHeaderArea: false
    +parentUpdatedBy: null
    +parentUpdated: null
    +isCascadeDeleteAction: false
    +isCascadeRestoreAction: false
    +cascadeDeleteObjects: []
    +dsgvoInstantDelete: false
    +defaultUpload: true
    +createHistory: false
    +historyArgument: ""
    +dynamicForm: false
    +indexForFTS: true
    +rightsError: false
    +rightsErrorType: ""
    +skipListViewForCurrentFormview: false
    +displayCustomRelations: false
    +boxlistFields: array:2 [ …2]
    +hasStaticEditList: false
    +hasOptimisticConcurrency: true
    +tinyMCRemoveScriptHost: false
    +tinyMCRelativeUrls: true
    +tinyMCConvertUrls: true
    +BC_DISABLE_SUCENCODE_FORM: false
    +BC_DISABLE_FIELD_SANITIZE: []
    +useDefaultFormHeader: true
    +customListButtons: array:1 [ …1]
    +customFormButtons: array:1 [ …1]
    +customErrorMessages: null
    +optimizedQueryEditlist: false
    +optimizedQueryNecessaryFields: []
    +FORM_SHOW_SAVE: true
    +FORM_SHOW_SAVE_EXIT: true
    +FORM_SHOW_DELETE: true
    +FORM_SHOW_NEW: true
    +FORM_SHOW_COPY: true
    +FORM_SHOW_EXPORT: true
    +FORM_SHOW_LIST_VIEW_BACK: true
    +FORM_SHOW_BACK: true
    +FORM_SHOW_BULK_EXPORT: true
    +FORM_SHOW_QR_CODE: true
    +LVIEW_LINK_TYPE: "lview_link_blade"
    +LVIEW_BUTTON_COMPONENTS: []
    +FVIEW_BUTTON_COMPONENTS: array:4 [ …4]
    +LIST_SHOW_EXPORT: true
    +LIST_SHOW_IMPORT: true
    +LIST_SHOW_NEW: true
    +LIST_SHOW_REFRESH: true
    +LIST_SHOW_BACK: true
    +LIST_SHOW_FILTER: true
    +LIST_SHOW_RESET_FILTER: true
    +LIST_SHOW_SCHEDULER: false
    +LIST_SHOW_KANBAN: false
    +LIST_SHOW_SHARE: true
    +LIST_SHOW_EDITLIST: true
    +LIST_SHOW_PRE_QUERIES: true
    +LIST_SHOW_DELETE_BULK: true
    +apiAccess: false
    +apiAccessDelete: false
    +datalist: array:1 [ …1]
    +createRelatedEntities: array:3 [ …3]
    +fields: array:10 [ …10]
    +fieldDataType: []
    +BC_FIELD_LABEL: 0
    +BC_FIELD_COLUMN: 1
    +BC_FIELD_JOIN: 2
    +BC_FIELD_TYPE: 3
    +BC_FIELD_INPUT_LENGTH: 4
    +BC_FIELD_LOV_OR_DD: 5
    +BC_FIELD_DATE_FORMAT: 5
    +BC_FIELD_PREDEF_VALUE: 6
    +BC_FIELD_GUI_MODE: 7
    +BC_FIELD_LIST_COLUMN_WIDTH: 8
    +BC_FIELD_DB_MODE: 9
    +BC_FIELD_DB_REQUIRED: 10
    +BC_FIELD_DB_COPY: 11
    +BC_HAS_SPECIAL_TAB: false
    +TAB_SPECIAL_NAME: ""
    +TAB_SPECIAL_EMPTY: false
    +TAB_SPECIAL_EMPTY_BODY_ID: null
    +SPECIAL_TAB_AJAX: false
    +TAB_COLUMN_CONFIG: "tabConfig"
    +TAB_CLASS_STYLE: 3
    +BC_HAS_GRAPH: false
    +BC_GRAPH_AJAX: false
    +GRAPH_TAB_NAME: ""
    +GRAPH_QUERIES: []
    +GRAPH_QUERIES_STATUS: ""
    +GRAPH_FIELD_VALUES_STATUS: []
    +GRAPH_FIELD_VALUES: []
    +EDIT_LIST_FIELDS: array:3 [ …3]
    +BC_BUTTON_ATTRIBUTE: "attr"
    +BC_BUTTON_JS_FUNCTION: "function"
    +BC_BUTTON_TITLE: "title"
    +BC_BUTTON_CONDITION: "condition"
    +grouping: null
    +BC_GROUPING_NAME: "name"
    +BC_GROUPING_CLASS: "class"
    +BC_GROUPING_CLASS_NONE: "none"
    +BC_GROUPING_CLASS_BORDER: "border"
    +BC_GROUPING_FIELDS: "fields"
    +BC_SHOWS_DATASET_INFO: true
    +BC_DYNAMIC_TOOLTIP: true
    +extendedValidation: false
    +frontendValidations: []
    +BC_FRONTEND_VALIDATION_TYPE: false
    +BC_FRONTEND_VALIDATION_SKIP_MAX_LENGTH: false
    +timeLine: []
    +timeLineExtended: []
    +BC_FIELD_TYPE_STRING: 0
    +BC_FIELD_TYPE_LONG_STRING: 1
    +BC_FIELD_TYPE_LONG_HTML: 2
    +BC_FIELD_TYPE_NUMBER: 3
    +BC_FIELD_TYPE_DOUBLE: 4
    +BC_FIELD_TYPE_CURRENCY: 5
    +BC_FIELD_TYPE_DATE: 6
    +BC_FIELD_TYPE_DATE_TIME: 7
    +BC_FIELD_TYPE_TIME: 8
    +BC_FIELD_TYPE_LOV: 9
    +BC_FIELD_TYPE_PASSWORD: 10
    +BC_FIELD_TYPE_DRILLDOWN: 11
    +BC_FIELD_TYPE_ATTACHMENT: 12
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE: 13
    +BC_FIELD_TYPE_LOV_BOOL: 14
    +BC_FIELD_TYPE_LOV_RADIO: 15
    +BC_FIELD_TYPE_NM: 16
    +BC_FIELD_TYPE_1N: 17
    +BC_FIELD_TYPE_LABEL: 18
    +BC_FIELD_TYPE_DYNAMIC_LOV: 20
    +BC_FIELD_TYPE_CONVERT: 21
    +BC_FIELD_TYPE_MULTISELECT: 22
    +BC_FIELD_TYPE_MULTISELECT_DYNAMIC: 23
    +BC_FIELD_TYPE_CONTAINER: 24
    +BC_FIELD_TYPE_CUSTOM1N: 25
    +BC_FIELD_TYPE_MULTICHECK: 26
    +BC_FIELD_TYPE_LOV_PREDICT: 27
    +BC_FIELD_TYPE_LOV_PREDICT_DYNAMIC: 28
    +BC_FIELD_TYPE_RADIO_CUSTOM: 29
    +BC_FIELD_TYPE_BLADE_FIELD: 30
    +BC_FIELD_TYPE_EMAIL: 31
    +BC_FIELD_TYPE_BLOB: 32
    +BC_FIELD_TYPE_OPTGROUP: 33
    +BC_FIELD_TYPE_ATTACHMENT_MANAGED: 34
    +BC_FIELD_TYPE_ATTACHMENT_SINGLE_MANAGED: 35
    +BC_FIELD_TYPE_WILD_DRILLDOWN: 36
    +BC_FIELD_TYPE_DD_LIST: 37
    +BC_FIELD_TYPE_JSON: 38
    +COPY_AND_SAVE: true
    +convertTypes: []
    +CONVERT_TYPE_RELATED_FIELD: "relatedField"
    +CONVERT_TYPE_UNIT: "unit"
    +CONVERT_TYPE_FORMULA: "formula"
    +CONVERT_FORMULA_TEMPERATURE_CELSIUS_TO_FAHRENHEIT: 0
    +CONVERT_FORMULA_TEMPERATURE_FAHRENHEIT_TO_CELSIUS: 1
    +CONVERT_FORMULA_LENGTH_MILLIMETER_TO_INCH: 2
    +CONVERT_FORMULA_LENGTH_INCH_TO_MILLIMETER: 3
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_INCH: 4
    +CONVERT_FORMULA_LENGTH_INCH_TO_CENTIMETER: 5
    +CONVERT_FORMULA_LENGTH_CENTIMETER_TO_FOOT: 6
    +CONVERT_FORMULA_LENGTH_FOOT_TO_CENTIMETER: 7
    +CONVERT_FORMULA_LENGTH_METER_TO_YARD: 8
    +CONVERT_FORMULA_LENGTH_YARD_TO_METER: 9
    +CONVERT_FORMULA_LENGTH_KILOMETRE_TO_MILE: 10
    +CONVERT_FORMULA_LENGTH_MILE_TO_KILOMETRE: 11
    +CONVERT_FORMULA_VOLUME_LITER_TO_GALLON: 12
    +CONVERT_FORMULA_VOLUME_GALLON_TO_LITER: 13
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_OUNCE: 14
    +CONVERT_FORMULA_WEIGHT_OUNCE_TO_GRAM: 15
    +CONVERT_FORMULA_WEIGHT_GRAM_TO_TROY_OUNCE: 16
    +CONVERT_FORMULA_WEIGHT_TROY_OUNCE_TO_GRAM: 17
    +CONVERT_FORMULA_WEIGHT_KILOGRAM_TO_POUND: 18
    +CONVERT_FORMULA_WEIGHT_POUND_TO_KILOGRAM: 19
    +extendedFieldConfig: false
    +BC_FIELD_GUI_MODE_NORMAL: 0
    +BC_FIELD_GUI_MODE_RO: 1
    +BC_FIELD_GUI_MODE_HIDDEN: 2
    +BC_FIELD_DB_MODE_NORMAL: 0
    +BC_FIELD_DB_MODE_RO: 1
    +BC_FIELD_DB_MODE_NORMAL_EXPR: 2
    +BC_FIELD_DB_MODE_RO_EXPR: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TABLE: 0
    +BC_FIELD_DRILLDOWN_OBJECT_LABEL: 1
    +BC_FIELD_DRILLDOWN_OBJECT_KEY: 2
    +BC_FIELD_DRILLDOWN_OBJECT_LINK: 3
    +BC_FIELD_DRILLDOWN_OBJECT_TARGET: 4
    +BC_FIELD_DRILLDOWN_OBJECT_PICKER_URL: 5
    +forceLoadOldViews: false
    +drillDownConfig: array:1 [ …1]
    +NMConfig: array:3 [ …3]
    +ddListConfig: array:1 [ …1]
    +BC_DRILLDOWN_CONFIG_PICKER: "picker"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE: "autocomplete"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE: "module"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE_LIST: "moduleList"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_REMOTE_ID: "remoteId"
    +BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_SEARCHFIELD: "field"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY: "addsearchquery"
    +BC_DRILLDOWN_CONFIG_ADDITIONAL_BY_SELF: "byself"
    +BC_DRILLDOWN_CONFIG_DEFAULTS: "default"
    +BC_DRILLDOWN_CONFIG_ROOT_OBJECT: "root_object"
    +BC_DRILLDOWN_CONFIG_SHOW_EDITLINK: false
    +BC_DRILLDOWN_CONFIG_SHOW_DELETE: false
    +BC_DRILLDOWN_CONFIG_SHOW_OBJECTLINK_IN_RO: false
    +BC_FORCE_BLADE_FORMVIEW: true
    +BC_NM_CONFIG_LEFT_OBJECTCODE: "oc_n"
    +BC_NM_CONFIG_LEFT_COLUMN_DEFAULT: "n"
    +BC_NM_CONFIG_LEFT_COLUMN: "col_left"
    +BC_NM_CONFIG_RIGHT_OBJECTCODE: "oc_m"
    +BC_NM_CONFIG_RIGHT_COLUMN_DEFAULT: "m"
    +BC_NM_CONFIG_RIGHT_COLUMN: "col_right"
    +BC_NM_CONFIG_TABLE_DEFAULT: "icrm_nm_generic"
    +BC_NM_CONFIG_TABLE: "table"
    +BC_NM_CONFIG_FLIPPED: "flipped"
    +BC_NM_CONFIG_SUB_FIELDS: "subFields"
    +BC_NM_CONFIG_RESTRICT_RELATED_NM_BY_DRILLDOWN_ID: "restrictRelatedByDrilldown"
    +BC_NM_CONFIG_SHOW_EDITDRILLDOWN: "showEditDrilldown"
    +BC_NM_CONFIG_TEMP_COLUMN_AVAILABLE: "tempColumnAvailable"
    +BC_NM_CONFIG_TYPE: "1N"
    +BC_NM_ADDITIONAL_FILTER_QUERY: "filterQuery"
    +BC_NM_ADDITIONAL_FILTER_QUERY_EDITLIST_FILTER: "editlistFilterOnly"
    +BC_NM_ORDER: "order"
    +BC_NM_CONFIG_PICK_BY_DATATABLE: "byDatatable"
    +BC_NM_TARGET_FIELDS_IN_TABLE: "datatableColumns"
    +BC_CUSTOM_PLUS_LABEL: "label"
    +BC_1N_SKIP_MODAL: true
    +BC_1N_ALTERNATIVE_ID_COLUMN: "1N_ALT_COLUMN"
    +BC_1N_ALTERNATIVE_ID_ORIGIN_BC: "1N_ORIGIN_BC"
    +BC_NM_DISABLE_DELETE: "disable_delete"
    +BC_NM_HIDE_APPEND: "hide_append"
    +BC_NM_OBJECT_HEADER_LABEL: "object_header_label"
    +MCConfig: array:2 [ …2]
    +ENABLE_DYNAMIC_NM1N: false
    +lViewFetchLimit: -1
    +lViewDefaultSorted: false
    +IOConfig: array:3 [ …3]
    +JSON_OBJECT_CONFIG: []
    +BC_ATTACHMENTS_IMAGES: array:9 [ …9]
    +BC_ATTACHMENTS_OFFICE: array:13 [ …13]
    +BC_ATTACHMENTS_TEXT: array:2 [ …2]
    +BC_ATTACHMENTS_ARCHIVE: array:6 [ …6]
    +attachmentConfig: []
    +defaultAttachmentConfig: array:30 [ …30]
    +fieldRows: []
    +ELEMENTS_TOOLTIP: []
    +parent: null
    +bc_lov_field_hierarchies: []
    +BC_LOV_FIELD_HIERARCHY_PARENT_FIELD: 0
    +BC_LOV_FIELD_HIERARCHY_FILTER_TEMPLATE: 1
    +BC_LOV_FIELD_HIERARCHY_SQL: 2
    +lov_custom_value: "lov_custom"
    +lov_custom_month: "lov_month"
    +lov_null_value: "lov_null"
    +lov_not_null_value: "lov_not_null"
    +map_field_country: ""
    +map_field_city: ""
    +map_field_zip: ""
    +map_field_street: ""
    +map_field_house: ""
    +map_field_latitude: ""
    +map_field_longitude: ""
    +calendar_field_date: "dateVal"
    +calendar_field_EndDate: ""
    +calendar_class_reference_field: null
    +calendar_from_field: null
    +calendar_to_field: null
    +BC_ROADMAP_STARTDATE: "dateVal"
    +BC_ROADMAP_ENDDATE: "dateVal2"
    +BC_ROADMAP_CUSTOMIZE_OPTIONS: "email"
    +timeline_calendar_field_date: "dateVal"
    +timeline_calendar_field_start_date: ""
    +timeline_calendar_field_end_date: ""
    +oracle_sort_spec_fields: []
    +_copyRelatedEntities: false
    +mvg_field_name_to_check: ""
    +autoCompleteAccess: []
    +hideBreadcrumb: false
    +hideBreadcrumbForm: false
    +hideBreadcrumbList: false
    +formHideToolbar: false
    +listHideToolbar: false
    +formHideFTS: false
    +listHideFTS: false
    +fetchByLine: false
    +additional_items: null
    +updatedOCVersion: null
    +updatedByOCVersion: null
    +mixboxlistFieldsWithDrilldown: true
  }
  "ProductBusComp" => __PHP_Incomplete_Class(ProductBusComp) {#9
    +caption: "product"
    +captions: "products"
    +table: "icrm_product"
    +file_inxed_table: "icrm_document_index"
    +standard_search_spec: "1 = 1"
    +standard_sort_spec: "t1.sort_number ASC"
    +autocomplete_search_spec: ""
    +calculateBar: false
    +calculateBarFields: []
    +customCalendarBar: false
    +sqlLabel: "CONCAT(CONCAT(t1.name, ' - '), t1.article_number)"
    +filterConfig: array:6 [ …6]
    +hideEditListCheckbox: false
    +hideEditListEditLink: false
    +customEditListEditLink: false
    +setDefaultValuesInSubFieldsForNMs: false
    +setReloadFormAfterPick: false
    +hasForcedLview: false
    +defaultAppDisplayMode: 4
    +possibleAppDisplayMode: array:4 [ …4]
    +tabs: array:4 [ …4]
    +model: null
    +full_search_alternative_field: ""
    +FVIEW_VALIDATION_TYPE: "on_save"
    +pre_queries: array:43 [ …43]
    +BC_PRE_QUERY_CAPTION: 0
    +BC_PRE_QUERY_SEARCH_SPEC: 1
    +BC_PRE_QUERY_SEARCH_VALUE: 2
    +joins: array:1 [ …1]
    +BC_JOIN_TABLE: 0
    +BC_JOIN_SQL: 1
    +BC_JOIN_KEY_COLUMN: 2
    +BC_JOIN_TABLE_KEY_COLUMN: 3
    +accessWithAdminRights: false
    +query: null
    +displayId: "productDisplayId"
    +displayName: "productDisplayName"
    +modulePath: "product"
    +objectCode: "product"
    +toolbarButton: "products"
    +currentToolbarButton: null
    +displayFastSearch: true
    +fastAdd: false
     …308
  }
  "LanguageBusComp" => __PHP_Incomplete_Class(LanguageBusComp) {#10 …351}
  "OfferruleBusComp" => __PHP_Incomplete_Class(OfferruleBusComp) {#11 …351}
  "AllfieldsBusComp" => __PHP_Incomplete_Class(AllfieldsBusComp) {#12 …350}
  "UserBusComp" => __PHP_Incomplete_Class(UserBusComp) {#13 …351}
  "UserMyProfileBusComp" => __PHP_Incomplete_Class(UserMyProfileBusComp) {#14 …349}
  "OrderBusComp" => __PHP_Incomplete_Class(OrderBusComp) {#15 …351}
  "OfferitemBusComp" => __PHP_Incomplete_Class(OfferitemBusComp) {#16 …351}
  "MailtemplateBusComp" => __PHP_Incomplete_Class(MailtemplateBusComp) {#17 …351}
  "DesignBusComp" => __PHP_Incomplete_Class(DesignBusComp) {#18 …351}
  "CantonBusComp" => __PHP_Incomplete_Class(CantonBusComp) {#19 …351}
  "CompanychainBusComp" => __PHP_Incomplete_Class(CompanychainBusComp) {#20 …351}
  "OfferpopupBusComp" => __PHP_Incomplete_Class(OfferpopupBusComp) {#21 …351}
  "WholesalerBusComp" => __PHP_Incomplete_Class(WholesalerBusComp) {#22 …351}
  "LanguagecomponentBusComp" => __PHP_Incomplete_Class(LanguagecomponentBusComp) {#23 …351}
  "OfferruleoptionitemBusComp" => __PHP_Incomplete_Class(OfferruleoptionitemBusComp) {#24 …351}
  "OfferBusComp" => __PHP_Incomplete_Class(OfferBusComp) {#25 …351}
  "OrderitemBusComp" => __PHP_Incomplete_Class(OrderitemBusComp) {#26 …351}
  "IformBusComp" => __PHP_Incomplete_Class(IformBusComp) {#27 …351}
  "LovlistBusComp" => __PHP_Incomplete_Class(LovlistBusComp) {#28 …350}
  "MulticheckBusComp" => __PHP_Incomplete_Class(MulticheckBusComp) {#29 …350}
  "AudittrailBusComp" => __PHP_Incomplete_Class(AudittrailBusComp) {#30 …350}
  "KanbanBusComp" => __PHP_Incomplete_Class(KanbanBusComp) {#31 …350}
  "TooltipBusComp" => __PHP_Incomplete_Class(TooltipBusComp) {#32 …350}
  "UseractivitiesBusComp" => __PHP_Incomplete_Class(UseractivitiesBusComp) {#33 …350}
  "ElmanagerBusComp" => __PHP_Incomplete_Class(ElmanagerBusComp) {#34 …350}
  "RolesBusComp" => __PHP_Incomplete_Class(RolesBusComp) {#35 …349}
  "RightsBusComp" => __PHP_Incomplete_Class(RightsBusComp) {#36 …349}
  "AssetBusComp" => __PHP_Incomplete_Class(AssetBusComp) {#37 …350}
  "ApplicationUserBusComp" => __PHP_Incomplete_Class(ApplicationUserBusComp) {#38 …349}
  "FormdisplayBusComp" => __PHP_Incomplete_Class(FormdisplayBusComp) {#39 …351}
  "DeletecontrolBusComp" => __PHP_Incomplete_Class(DeletecontrolBusComp) {#40 …350}
  "SearchqueryBusComp" => __PHP_Incomplete_Class(SearchqueryBusComp) {#41 …350}
  "LocationcodeBusComp" => LocationcodeBusComp {#70}
]
BCREGISTRYCALLED
true
BCREGISTRYNAMEDROUTES
true
suc_token
array:2 [
  "21f30aeedaa48d4471c803d3e12c1116" => 1715926474
  "f56006afd9d4b864519d30d8122ee723" => 1715926475
]
blade
mySucBlade {#59}
ADMINSETTINGS_QRINTEGRATION
null
ADMINSETTINGSCALLED
true
LOGIN_URL
"/it/menzioni-legali/"
MULTICHECKTYPESLOV
array:55 [
  "cmslanguage" => "Cmslanguage"
  "offerruleoption" => "Offerruleoption"
  "zoomwebinar" => "Zoom Webinar"
  "brand" => "Brand"
  "userblacklist" => "Userblacklist"
  "loginhero" => "Loginhero"
  "page" => "Pages"
  "test" => " Test BC"
  "formstorevalue" => "Formstorevalue"
  "producttraining" => "Producttraining"
  "cmspage" => "Cmspage"
  "product" => "Product"
  "language" => "Language"
  "offerrule" => "Offerrule"
  "allfields" => "Allfields Test BC"
  "user" => "Employees"
  "order" => "Order"
  "formfield" => "Formfield"
  "offeritem" => "Offeritem"
  "mailtemplate" => "Mail template"
  "elearning" => "E-Learning"
  "webinar" => "Webinar"
  "formconditionalfield" => "Formconditionalfield"
  "cmscomponent" => "Cmscomponent"
  "canton" => "Canton"
  "companychain" => "Companychain"
  "offerpopup" => "Offerpopup"
  "formfieldvalue" => "Formfieldvalue"
  "formmailconfirmation" => "Formmailconfirmation"
  "languagecomponent" => "Languagecomponent"
  "zoomregistration" => "Zoomregistration"
  "cmsupload" => "Cmsupload"
  "cmsmenulink" => "Cmsmenulink"
  "offerruleoptionitem" => "Offerruleoptionitem"
  "offer" => "Offer"
  "form" => "Form"
  "formstore" => "Formstore"
  "orderitem" => "Orderitem"
  "aclright" => "Aclright"
  "elmanager" => "Searchqueries"
  "roles" => "Roles"
  "rights" => "Rights"
  "asset" => "Assets"
  "aclrole" => "Aclrole"
  "deletecontrol" => "DSGVO Settings"
  "searchquery" => "Searchqueries"
  "playground" => "playground"
  "bootstrapper" => "bootstrapper"
  "frontend" => "frontend"
  "formdesigner" => "formdesigner"
  "certificate" => "certificate"
  "modulemanager" => "modulemanager"
  "cms" => "cms"
  "logs" => "logs"
  "config" => "config"
]
MULTICHECKFIELDARRAY
array:1 [
  "allfields" => array:2 [
    "multicheck" => array:2 [
      "name" => "Status (Multicheck)"
      "type" => "mc_text"
    ]
    "radioCustom" => array:2 [
      "name" => "Status (RadioCustom)"
      "type" => "mc_text"
    ]
  ]
]
MULTICHECKALLFIELDS
array:2 [
  "multicheck" => "Status (Multicheck)"
  "radioCustom" => "Status (RadioCustom)"
]
MULTICHECKDESCRIPTIONFIELDS
array:46 [
  "cmslanguage" => array:23 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "component_uuid" => "Component UUID"
    "menulink_uuid" => "Menu Link UUID"
    "lang" => "Language"
    "module_name" => "Module Name"
    "p_title" => "Meta Title"
    "p_mtitle" => "Meta Title"
    "p_mdesc" => "Meta Description"
    "p_mkeywords" => "Meta Keywords"
    "p_headerimg" => "Header Image"
    "p_matnummer" => "MAT Nummer"
    "c_title" => "Component Title"
    "c_buttontitle" => "Button Title"
    "c_link" => "Component Link"
    "c_image" => "Component Image"
    "c_content" => "Component Content"
    "c_alt" => "Component Alt"
  ]
  "offerruleoption" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offerRule" => "Offer Rule"
    "position" => "Position"
    "type" => "Type"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "zoomwebinar" => array:30 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Internal Name"
    "topic" => "Title / Topic"
    "agenda" => "Agenda"
    "start_date" => "Start date / time"
    "end_date" => "End date / time"
    "settingsFields" => "Settings"
    "survey_url" => "Survey Url"
    "host_video" => "Start video / enable webcam when host joins webinar."
    "panelists_video" => "Start video / enable webcam when panelists / speaker joins the webinar."
    "hd_video" => "Enable HD video stream"
    "approval_type" => "How to behave after a registration (recommended: keep default "automatically")"
    "close_registration" => "Close registration after event date"
    "registrants_restrict_number" => "Restrict number of registrants for a webinar. By default, it is set to 500."
    "registrants_email_notification" => "Send email notifications to registrants about approval, cancellation, denial of the registration."
    "registrants_confirmation_email" => "A registered user needs to confirm the registration (by E-Mail, leave disabled!)"
    "allow_multiple_devices" => "Allow attendees to join from multiple devices at the same time."
    "panelists_invitation_email_notification" => "Notify Moderators / Speakers / Pannelists through Zoom (leave disabled!)"
    "practice_session" => "Enable Practice / Test Sessions"
    "contact_email" => "Responsible contact E-Mail"
    "contact_name" => "Responsible contact Name"
    "storeFields" => "Event Data"
    "event_id" => "Zoom API Event ID"
    "event_uuid" => "Zoom API Event UUID"
    "start_url" => "Url to Start / Test / Practice the Webinar"
  ]
  "brand" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "language" => ""
    "active" => "Active"
    "logo" => "Logo"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "userblacklist" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "domain" => "Blocked domain"
  ]
  "loginhero" => array:28 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "title_ger" => "Title (ger)"
    "title_fra" => "Title (fra)"
    "title_ita" => "Title (ita)"
    "description_ger" => "Description (ger)"
    "description_fra" => "Description (fra)"
    "description_ita" => "Description (ita)"
    "active" => "Active"
    "type" => "Type"
    "picture" => "Picture"
    "link_ger" => "Link (ger)"
    "link_fra" => "Link (fra)"
    "link_ita" => "Link (ita)"
    "linkTitle_ger" => "Link Title (ger)"
    "linkTitle_fra" => "Link Title (fra)"
    "linkTitle_ita" => "Link Title (ita)"
    "offer" => "Offer"
    "expireDate" => "Expire Date"
    "startDate" => "Start Date"
    "expireDateView" => "End"
    "startDateView" => "Start"
    "isLoginheroVisible" => "Visibility"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "page" => array:22 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "name" => "Name"
    "slug" => "Slug"
    "title_ita" => "Title (Italienisch)"
    "title_fra" => "Title (Französisch)"
    "title_ger" => "Title (Deutsch)"
    "content_ita" => "Content (Italienisch)"
    "content_fra" => "Content (Französisch)"
    "content_ger" => "Content (Deutsch)"
    "snippet_ita" => "Snippet (Italienisch)"
    "snippet_fra" => "Snippet (Französisch)"
    "snippet_ger" => "Snippet (Deutsch)"
    "style_css" => "CSS"
    "redirect" => "Redirect"
    "public" => "Public"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "test" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formstorevalue" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "store_uuid" => "Store UUID"
    "form_field_uuid" => "Form Field UUID"
    "value" => "Value"
  ]
  "producttraining" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "lang" => "Language"
    "active" => "Active"
    "hidden" => "Hidden"
    "duration" => "Duration"
    "therapyarea" => "Therapy Area"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "hasCertificate" => "Certificate"
    "producttraining_video" => "Product Training Video"
    "producttraining_image" => "Product Training Image"
  ]
  "cmspage" => array:17 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "type" => "Type"
    "slug" => "Slug"
    "active" => "Active"
    "lang_de" => "Language DE"
    "lang_fr" => "Language FR"
    "lang_it" => "Language IT"
    "role" => "Role"
    "showFooter" => "Show Footer"
    "headerType" => "Header Type"
    "menuType" => "Menu Type"
  ]
  "product" => array:28 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "pharmaNumber" => "Pharma Number"
    "articleNumber" => "Article / SAP Number"
    "sortNumber" => "Number to Sort"
    "type" => "Type"
    "brand" => "Brand"
    "form" => "Form"
    "dosage" => "Dosage"
    "package" => "Package / Quantity"
    "price" => "Ex fact Price"
    "availabilityEnd" => "Availability End"
    "availabilityStart" => "Availability Start"
    "maxOrderQuantity" => "Max Order Quantity"
    "active" => "Active"
    "amount" => "Package Amount"
    "title_fr" => "French Producttitle"
    "title_de" => "German Producttitle"
    "title_it" => "Italian Producttitle"
    "picture_fr" => "French Productpicture"
    "picture_de" => "German Productpicture"
    "picture_it" => "Italian Productpicture"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "language" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Integration ID"
    "description" => "Code"
    "type" => "Type"
    "category" => "Category"
    "language" => ""
    "createdByLogin" => "Created by"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offerrule" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "offer" => "Offer"
    "type" => "Type"
    "value" => "Value"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "allfields" => array:40 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "currency" => "Currency (€)"
    "groupDateFields" => "Dates"
    "dateVal" => "Date"
    "dateTime" => "Date Time"
    "time" => "Time"
    "lovDrilldownFields" => "LOV's & Drilldowns"
    "user" => "Drilldown (User Entity)"
    "status" => "Status (LOV)"
    "statusRadio" => "Language (Radio)"
    "statusBool" => "Bool"
    "longContentFields" => "Large Content Fields"
    "comments" => "Comment Pure"
    "commentsHTML" => "Comment HTML"
    "attachmentFields" => "Attachment Fields"
    "attachment" => "Attachment"
    "attachmentMulti" => "Attachment Multi"
    "relFields" => "Relational Fields"
    "userNm" => "Mitarbeiter (NM)"
    "status1N" => "Status (1N)"
    "label" => "Label"
    "dynamicFields" => "Dynamic Fields"
    "statusDyn" => "Status (LOV-Dynamic)"
    "statusMulti" => "Status (Multiselect)"
    "statusMultiDyn" => "Status (Multiselect Dynamic)"
    "multicheck" => "Status (Multicheck)"
    "statusPredict" => "Status (LOV Prediction)"
    "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
    "radioCustom" => "Status (RadioCustom)"
    "blade" => "Custom Blade Field"
    "email" => "Email"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "user" => array:47 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Employee Number"
    "gender" => "Gender"
    "title" => "Title"
    "firstName" => "First Name"
    "lastName" => "Last Name"
    "street" => "Street"
    "phone" => "Telephone"
    "locationCode" => "Code / City"
    "userGln" => "GLN (User)"
    "sanofiCode" => "Sanofi Code"
    "emailAddress" => "E-Mail"
    "wholesaler" => "Wholesaler"
    "wholesalerNumber" => "Wholesaler Number"
    "language" => "Frontend language"
    "verificationToken" => "Verification Token"
    "verified" => "Verification (Happens after registration or pw-reset)"
    "approved" => "Approval (Can be approved, if verified)"
    "role" => "Role"
    "loginType" => "Login type"
    "resetToken" => "Reset Token"
    "resetTokenDateTime" => "Reset Token Time"
    "login" => "Login"
    "password" => "Password"
    "userType" => ""
    "registrationDate" => "Registration Date"
    "lastLoginDate" => "Last Login Date"
    "territory" => "Territory"
    "sicknessCover" => "Sickness cover"
    "photo" => "Photo"
    "comments" => "Comments"
    "proPharmaGLN" => "GLN"
    "proPharmaToken" => "Token"
    "proPharmaLoginToken" => ""
    "proPharmaActive" => "Active"
    "proPharmaTokeTimeStamp" => "Timestamp"
    "generateProPharmaToken" => ""
    "chain" => "Chain / Group"
    "companyName" => "Name of the pharmacy"
    "companyAddressLocationCode" => "Postcode"
    "companyAddressStreet" => "Street + Nr"
    "gln" => "GLN (Company)"
    "companyContactPref" => "Prefered Contact Type"
  ]
  "order" => array:31 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => ""
    "offer" => "Offer"
    "orderNumber" => "Order number"
    "status" => "Status"
    "type" => "Type"
    "wholesaler" => "Wholesaler"
    "wholesalerNumber" => "Wholesaler number"
    "street" => "Street"
    "houseNumber" => "House number"
    "locationCode" => "Location code / City"
    "gln" => "GLN"
    "sanofiCode" => "Sanofi code"
    "sum" => "Sum"
    "rebate" => "Rebate"
    "priceReduction" => "Price Reduction"
    "appliedRule" => "Applied Rule"
    "dateConfirmed" => "Date of Order Confirmation"
    "dateDenied" => "Date of Order Denial"
    "product" => "Product"
    "owner" => "Owner"
    "customer" => "Customer"
    "comment" => "Wishes & Comments"
    "proPharmaStatus" => "Pro Pharma Status"
    "orderItemList" => "Product/Quantity"
    "OrderListButtons" => "Approve"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formfield" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "group_uuid" => "Group UUID"
    "name" => "Name"
    "lang" => "Language"
    "label" => "Label"
    "type" => "Type"
    "data_type" => "Data Type"
    "required" => "Required"
    "initial_visible" => "Show field element (initially)"
    "width" => "Width"
    "options_width" => "Options width"
    "position" => "Position"
    "page" => "Page"
    "info" => "Info"
  ]
  "offeritem" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offer" => ""
    "product" => ""
    "startDelivery" => ""
    "endDelivery" => ""
    "quantityMultiplier" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "mailtemplate" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Internal name"
    "action" => "Type"
    "status" => "Active"
    "createdByLogin" => "Created by"
    "language" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "elearning" => array:22 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "type" => "Type"
    "lang" => "Language"
    "active" => "Active"
    "hidden" => "Hidden"
    "duration" => "Duration"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "elearning_video" => "Elearning Video"
    "elearning_image" => "Elearning Image"
    "speaker" => "Speaker"
    "accreditation" => "Accreditation"
    "form_id" => "Form"
  ]
  "webinar" => array:27 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "lang" => "Language"
    "active" => "Active (Only visible for admins if inactive)"
    "hidden" => "Hidden (Only visible for users with login)"
    "is_done" => "Webinar has ended"
    "time_date" => "Date"
    "time_from" => "Start Time"
    "time_to" => "End Time"
    "place" => "Place"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "webinar_image" => "Webinar Image"
    "without_zoom" => "Without Zoom"
    "speaker" => "Speaker"
    "accreditation" => "Accreditation"
    "dates" => "Dates"
    "agenda" => "Agenda"
    "form_id" => "Form"
  ]
  "formconditionalfield" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "form_field_group_uuid" => "Form Field Group UUID"
    "form_field_value_group_uuid" => "Form Field Value Group UUID"
    "form_conditional_field_group_uuid" => "Form Conditional Field Group UUID"
    "action" => "Action"
    "position" => "Position"
  ]
  "cmscomponent" => array:49 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "parent_component_uuid" => "Parent Component UUID"
    "component" => "Component"
    "type" => "Type"
    "marginX" => "Margin X"
    "marginY" => "Margin Y"
    "marginTop" => "Margin Top"
    "marginBottom" => "Margin Bottom"
    "marginLeft" => "Margin Left"
    "marginRight" => "Margin Right"
    "paddingX" => "Padding X"
    "paddingY" => "Padding Y"
    "paddingTop" => "Padding Top"
    "paddingBottom" => "Padding Bottom"
    "paddingLeft" => "Padding Left"
    "paddingRight" => "Padding Right"
    "alignment" => "Alignment"
    "font" => "Font"
    "fontSize" => "Font Size"
    "textTransform" => "Text Transform"
    "textDecoration" => "Text Decoration"
    "width" => "Width"
    "height" => "Height"
    "color" => "Color"
    "hoverColor" => "Hover Color"
    "backgroundColor" => "Background Color"
    "hoverBackgroundColor" => "Hover Background Color"
    "borderColor" => "Border Color"
    "hoverBorderColor" => "Hover Border Color"
    "backgroundImage" => "Background Image"
    "borderRadius" => "Border Radius"
    "gapX" => "Gap X"
    "gapY" => "Gap Y"
    "justifyContent" => "Justify Content"
    "alignItems" => "Align Items"
    "form_uuid" => "Form UUID"
    "buttonColor" => "Button Color"
    "buttonBackgroundColor" => "Button Background Color"
    "boxShadow" => "Box Shadow"
    "boxShadowColor" => "Box Shadow Color"
    "overlay" => "Overlay"
    "target" => "Target"
    "position" => "Position"
  ]
  "canton" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "short" => "Name"
    "name_de" => "German Name"
    "name_fr" => "Italian Name"
    "name_it" => "French Name"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "companychain" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offerpopup" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offer" => ""
    "offerRule" => ""
    "language" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formfieldvalue" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_field_uuid" => "Form Field UUID"
    "group_uuid" => "Group UUID"
    "value" => "Value"
    "position" => "Position"
    "info" => "Info"
    "correct_answer" => "Correct Answer"
  ]
  "formmailconfirmation" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "mailtemplate_uuid" => "Template UUID"
    "recipient_type" => "Recipient Type"
    "recipient_email" => "Recipient Email"
  ]
  "languagecomponent" => array:13 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "language" => "Language Code"
    "content" => "Content"
    "field" => ""
    "entityId" => ""
    "internalcategory" => "Internal Category"
    "moduleId" => "Module Id"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "zoomregistration" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "role" => "Name"
    "zoomId" => ""
    "zoomWebinarId" => ""
  ]
  "cmsupload" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "file_name" => "Name"
    "file_size" => "Size"
    "file_type" => "Type"
    "file_path" => "Path"
    "upload_type" => "Upload type"
  ]
  "cmsmenulink" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "target" => "Target"
    "visibility" => "Visibility"
    "position" => "Position"
  ]
  "offerruleoptionitem" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offerRuleOption" => "Offer Rule Option"
    "checkFor" => "Check for"
    "value" => "Value"
    "product" => "Product"
    "type" => "Type"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offer" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "slug" => "Slug"
    "startTime" => "Start Time"
    "endTime" => "End Time"
    "design" => "Design"
    "status" => "Status"
    "offerLink" => "Link to other offer"
    "offerProduct" => "Products"
    "offerRule" => "Rebaterules"
    "offerPopup" => "Popups"
    "language" => "Content"
    "filterCanton" => "Allow only for Canton"
    "filterLocationCode" => "Allow only for Location code"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "form" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "type" => "Type"
    "lang_de" => "Language DE"
    "lang_fr" => "Language FR"
    "lang_it" => "Language IT"
    "multiple_submit" => "Multiple Submit"
    "returnurl" => "Return URL"
    "returnurl_error" => "Error Return URL"
    "external_embedding" => "Allow external embedding"
  ]
  "formstore" => array:18 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "lang" => "Language"
    "type" => "Type"
    "parent_uuid" => "Parent UUID"
    "email" => "Email"
    "first_name" => "First Name"
    "last_name" => "Last Name"
    "zoom_id" => "Zoom ID"
    "zoom_api_id" => "Zoom API ID"
    "zoom_link" => "Zoom Link"
    "zoom_role" => "Zoom Role"
    "result" => "Result"
  ]
  "orderitem" => array:14 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "order" => "Order"
    "product" => "Product"
    "dateDelivery" => "Earliest delivery date"
    "wholesaler" => "Wholesaler"
    "integrationId" => "Code"
    "quantity" => "Quantity"
    "price" => "Price"
    "customer" => "Customer"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "aclright" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "nameDeu" => ""
    "nameEnu" => ""
    "technicalName" => ""
    "module" => ""
    "accessRight" => "Access Right"
    "customRight" => "Custom Right"
  ]
  "elmanager" => array:13 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "name" => "Name"
    "user" => "Owner"
    "jsonString" => "EditList Json String"
    "type" => "Type"
    "module" => "Module"
    "isDefault" => "Default"
    "integrationId" => "Code"
    "createdByLogin" => "Created By"
  ]
  "roles" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "nameDeu" => "Name DE"
    "nameEnu" => "Name EN"
    "toolbarDirs" => "Foldable Toolbar"
  ]
  "rights" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "nameDeu" => "Name German"
    "nameEnu" => "Name English"
    "technicalName" => "Technical Name"
    "color" => "Color"
    "icon" => "Icon"
    "group" => "Group"
    "descriptionDeu" => "Description German"
    "descriptionEnu" => "Description English"
    "isModuleRight" => "App Recht"
    "checkedFlag" => "Active"
  ]
  "asset" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "objectTitle" => "Objekt Titel"
    "fname" => "Field Name"
    "accessType" => "Access Type"
    "type" => "type"
    "owner" => "Owner"
    "fieldName" => "technical Fieldname"
    "attachmentPath" => "Path"
    "moduleEntity" => "Entity (w/Module)"
    "attachment" => "Uploads"
  ]
  "aclrole" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "nameDeu" => ""
    "nameEnu" => ""
  ]
  "deletecontrol" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "module" => "Module"
    "daysTilDelete" => "Permanent deletion after..."
    "daysTilWarning" => "Warning about ther permanent deletion after..."
    "daysTilUnusedWarning" => "Not used warning after..."
    "createdByLogin" => "Created by"
    "attachment" => "Attachment"
  ]
  "searchquery" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "name" => "Name"
    "user" => "Owner"
    "query" => "Filter Query (with FTS)"
    "type" => "Type"
    "module" => "Module"
    "integrationId" => "Code"
    "createdByLogin" => "Created By"
  ]
]
KANBANTYPESLOV
array:55 [
  "cmslanguage" => "Cmslanguage"
  "offerruleoption" => "Offerruleoption"
  "zoomwebinar" => "Zoom Webinar"
  "brand" => "Brand"
  "userblacklist" => "Userblacklist"
  "loginhero" => "Loginhero"
  "page" => "Pages"
  "test" => " Test BC"
  "formstorevalue" => "Formstorevalue"
  "producttraining" => "Producttraining"
  "cmspage" => "Cmspage"
  "product" => "Product"
  "language" => "Language"
  "offerrule" => "Offerrule"
  "allfields" => "Allfields Test BC"
  "user" => "Employees"
  "order" => "Order"
  "formfield" => "Formfield"
  "offeritem" => "Offeritem"
  "mailtemplate" => "Mail template"
  "elearning" => "E-Learning"
  "webinar" => "Webinar"
  "formconditionalfield" => "Formconditionalfield"
  "cmscomponent" => "Cmscomponent"
  "canton" => "Canton"
  "companychain" => "Companychain"
  "offerpopup" => "Offerpopup"
  "formfieldvalue" => "Formfieldvalue"
  "formmailconfirmation" => "Formmailconfirmation"
  "languagecomponent" => "Languagecomponent"
  "zoomregistration" => "Zoomregistration"
  "cmsupload" => "Cmsupload"
  "cmsmenulink" => "Cmsmenulink"
  "offerruleoptionitem" => "Offerruleoptionitem"
  "offer" => "Offer"
  "form" => "Form"
  "formstore" => "Formstore"
  "orderitem" => "Orderitem"
  "aclright" => "Aclright"
  "elmanager" => "Searchqueries"
  "roles" => "Roles"
  "rights" => "Rights"
  "asset" => "Assets"
  "aclrole" => "Aclrole"
  "deletecontrol" => "DSGVO Settings"
  "searchquery" => "Searchqueries"
  "playground" => "playground"
  "bootstrapper" => "bootstrapper"
  "frontend" => "frontend"
  "formdesigner" => "formdesigner"
  "certificate" => "certificate"
  "modulemanager" => "modulemanager"
  "cms" => "cms"
  "logs" => "logs"
  "config" => "config"
]
KANBANFIELDARRAY
array:22 [
  "offerruleoption" => array:1 [
    "type" => "Type"
  ]
  "zoomwebinar" => array:1 [
    "approval_type" => "How to behave after a registration (recommended: keep default "automatically")"
  ]
  "loginhero" => array:1 [
    "type" => "Type"
  ]
  "producttraining" => array:1 [
    "lang" => "Language"
  ]
  "product" => array:2 [
    "type" => "Type"
    "form" => "Form"
  ]
  "language" => array:1 [
    "category" => "Category"
  ]
  "offerrule" => array:1 [
    "type" => "Type"
  ]
  "allfields" => array:1 [
    "status" => "Status (LOV)"
  ]
  "user" => array:5 [
    "gender" => "Gender"
    "language" => "Frontend language"
    "loginType" => "Login type"
    "userType" => ""
    "companyContactPref" => "Prefered Contact Type"
  ]
  "order" => array:3 [
    "status" => "Status"
    "type" => "Type"
    "proPharmaStatus" => "Pro Pharma Status"
  ]
  "mailtemplate" => array:1 [
    "action" => "Type"
  ]
  "elearning" => array:2 [
    "type" => "Type"
    "lang" => "Language"
  ]
  "webinar" => array:1 [
    "lang" => "Language"
  ]
  "formmailconfirmation" => array:1 [
    "recipient_type" => "Recipient Type"
  ]
  "languagecomponent" => array:1 [
    "internalcategory" => "Internal Category"
  ]
  "offerruleoptionitem" => array:2 [
    "checkFor" => "Check for"
    "type" => "Type"
  ]
  "offer" => array:1 [
    "status" => "Status"
  ]
  "form" => array:1 [
    "type" => "Type"
  ]
  "elmanager" => array:2 [
    "type" => "Type"
    "module" => "Module"
  ]
  "asset" => array:2 [
    "accessType" => "Access Type"
    "type" => "type"
  ]
  "deletecontrol" => array:1 [
    "module" => "Module"
  ]
  "searchquery" => array:1 [
    "type" => "Type"
  ]
]
KANBANALLFIELDS
array:18 [
  "type" => "Type"
  "approval_type" => "How to behave after a registration (recommended: keep default "automatically")"
  "lang" => "Language"
  "form" => "Form"
  "category" => "Category"
  "status" => "Status"
  "gender" => "Gender"
  "language" => "Frontend language"
  "loginType" => "Login type"
  "userType" => ""
  "companyContactPref" => "Prefered Contact Type"
  "proPharmaStatus" => "Pro Pharma Status"
  "action" => "Type"
  "recipient_type" => "Recipient Type"
  "internalcategory" => "Internal Category"
  "checkFor" => "Check for"
  "module" => "Module"
  "accessType" => "Access Type"
]
KANBANDESCRIPTIONFIELDS
array:46 [
  "cmslanguage" => array:23 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "component_uuid" => "Component UUID"
    "menulink_uuid" => "Menu Link UUID"
    "lang" => "Language"
    "module_name" => "Module Name"
    "p_title" => "Meta Title"
    "p_mtitle" => "Meta Title"
    "p_mdesc" => "Meta Description"
    "p_mkeywords" => "Meta Keywords"
    "p_headerimg" => "Header Image"
    "p_matnummer" => "MAT Nummer"
    "c_title" => "Component Title"
    "c_buttontitle" => "Button Title"
    "c_link" => "Component Link"
    "c_image" => "Component Image"
    "c_content" => "Component Content"
    "c_alt" => "Component Alt"
  ]
  "offerruleoption" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offerRule" => "Offer Rule"
    "position" => "Position"
    "type" => "Type"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "zoomwebinar" => array:30 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Internal Name"
    "topic" => "Title / Topic"
    "agenda" => "Agenda"
    "start_date" => "Start date / time"
    "end_date" => "End date / time"
    "settingsFields" => "Settings"
    "survey_url" => "Survey Url"
    "host_video" => "Start video / enable webcam when host joins webinar."
    "panelists_video" => "Start video / enable webcam when panelists / speaker joins the webinar."
    "hd_video" => "Enable HD video stream"
    "approval_type" => "How to behave after a registration (recommended: keep default "automatically")"
    "close_registration" => "Close registration after event date"
    "registrants_restrict_number" => "Restrict number of registrants for a webinar. By default, it is set to 500."
    "registrants_email_notification" => "Send email notifications to registrants about approval, cancellation, denial of the registration."
    "registrants_confirmation_email" => "A registered user needs to confirm the registration (by E-Mail, leave disabled!)"
    "allow_multiple_devices" => "Allow attendees to join from multiple devices at the same time."
    "panelists_invitation_email_notification" => "Notify Moderators / Speakers / Pannelists through Zoom (leave disabled!)"
    "practice_session" => "Enable Practice / Test Sessions"
    "contact_email" => "Responsible contact E-Mail"
    "contact_name" => "Responsible contact Name"
    "storeFields" => "Event Data"
    "event_id" => "Zoom API Event ID"
    "event_uuid" => "Zoom API Event UUID"
    "start_url" => "Url to Start / Test / Practice the Webinar"
  ]
  "brand" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "language" => ""
    "active" => "Active"
    "logo" => "Logo"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "userblacklist" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "domain" => "Blocked domain"
  ]
  "loginhero" => array:28 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "title_ger" => "Title (ger)"
    "title_fra" => "Title (fra)"
    "title_ita" => "Title (ita)"
    "description_ger" => "Description (ger)"
    "description_fra" => "Description (fra)"
    "description_ita" => "Description (ita)"
    "active" => "Active"
    "type" => "Type"
    "picture" => "Picture"
    "link_ger" => "Link (ger)"
    "link_fra" => "Link (fra)"
    "link_ita" => "Link (ita)"
    "linkTitle_ger" => "Link Title (ger)"
    "linkTitle_fra" => "Link Title (fra)"
    "linkTitle_ita" => "Link Title (ita)"
    "offer" => "Offer"
    "expireDate" => "Expire Date"
    "startDate" => "Start Date"
    "expireDateView" => "End"
    "startDateView" => "Start"
    "isLoginheroVisible" => "Visibility"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "page" => array:22 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "name" => "Name"
    "slug" => "Slug"
    "title_ita" => "Title (Italienisch)"
    "title_fra" => "Title (Französisch)"
    "title_ger" => "Title (Deutsch)"
    "content_ita" => "Content (Italienisch)"
    "content_fra" => "Content (Französisch)"
    "content_ger" => "Content (Deutsch)"
    "snippet_ita" => "Snippet (Italienisch)"
    "snippet_fra" => "Snippet (Französisch)"
    "snippet_ger" => "Snippet (Deutsch)"
    "style_css" => "CSS"
    "redirect" => "Redirect"
    "public" => "Public"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "test" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formstorevalue" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "store_uuid" => "Store UUID"
    "form_field_uuid" => "Form Field UUID"
    "value" => "Value"
  ]
  "producttraining" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "lang" => "Language"
    "active" => "Active"
    "hidden" => "Hidden"
    "duration" => "Duration"
    "therapyarea" => "Therapy Area"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "hasCertificate" => "Certificate"
    "producttraining_video" => "Product Training Video"
    "producttraining_image" => "Product Training Image"
  ]
  "cmspage" => array:17 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "type" => "Type"
    "slug" => "Slug"
    "active" => "Active"
    "lang_de" => "Language DE"
    "lang_fr" => "Language FR"
    "lang_it" => "Language IT"
    "role" => "Role"
    "showFooter" => "Show Footer"
    "headerType" => "Header Type"
    "menuType" => "Menu Type"
  ]
  "product" => array:28 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "pharmaNumber" => "Pharma Number"
    "articleNumber" => "Article / SAP Number"
    "sortNumber" => "Number to Sort"
    "type" => "Type"
    "brand" => "Brand"
    "form" => "Form"
    "dosage" => "Dosage"
    "package" => "Package / Quantity"
    "price" => "Ex fact Price"
    "availabilityEnd" => "Availability End"
    "availabilityStart" => "Availability Start"
    "maxOrderQuantity" => "Max Order Quantity"
    "active" => "Active"
    "amount" => "Package Amount"
    "title_fr" => "French Producttitle"
    "title_de" => "German Producttitle"
    "title_it" => "Italian Producttitle"
    "picture_fr" => "French Productpicture"
    "picture_de" => "German Productpicture"
    "picture_it" => "Italian Productpicture"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "language" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Integration ID"
    "description" => "Code"
    "type" => "Type"
    "category" => "Category"
    "language" => ""
    "createdByLogin" => "Created by"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offerrule" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "offer" => "Offer"
    "type" => "Type"
    "value" => "Value"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "allfields" => array:40 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "currency" => "Currency (€)"
    "groupDateFields" => "Dates"
    "dateVal" => "Date"
    "dateTime" => "Date Time"
    "time" => "Time"
    "lovDrilldownFields" => "LOV's & Drilldowns"
    "user" => "Drilldown (User Entity)"
    "status" => "Status (LOV)"
    "statusRadio" => "Language (Radio)"
    "statusBool" => "Bool"
    "longContentFields" => "Large Content Fields"
    "comments" => "Comment Pure"
    "commentsHTML" => "Comment HTML"
    "attachmentFields" => "Attachment Fields"
    "attachment" => "Attachment"
    "attachmentMulti" => "Attachment Multi"
    "relFields" => "Relational Fields"
    "userNm" => "Mitarbeiter (NM)"
    "status1N" => "Status (1N)"
    "label" => "Label"
    "dynamicFields" => "Dynamic Fields"
    "statusDyn" => "Status (LOV-Dynamic)"
    "statusMulti" => "Status (Multiselect)"
    "statusMultiDyn" => "Status (Multiselect Dynamic)"
    "multicheck" => "Status (Multicheck)"
    "statusPredict" => "Status (LOV Prediction)"
    "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
    "radioCustom" => "Status (RadioCustom)"
    "blade" => "Custom Blade Field"
    "email" => "Email"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "user" => array:47 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Employee Number"
    "gender" => "Gender"
    "title" => "Title"
    "firstName" => "First Name"
    "lastName" => "Last Name"
    "street" => "Street"
    "phone" => "Telephone"
    "locationCode" => "Code / City"
    "userGln" => "GLN (User)"
    "sanofiCode" => "Sanofi Code"
    "emailAddress" => "E-Mail"
    "wholesaler" => "Wholesaler"
    "wholesalerNumber" => "Wholesaler Number"
    "language" => "Frontend language"
    "verificationToken" => "Verification Token"
    "verified" => "Verification (Happens after registration or pw-reset)"
    "approved" => "Approval (Can be approved, if verified)"
    "role" => "Role"
    "loginType" => "Login type"
    "resetToken" => "Reset Token"
    "resetTokenDateTime" => "Reset Token Time"
    "login" => "Login"
    "password" => "Password"
    "userType" => ""
    "registrationDate" => "Registration Date"
    "lastLoginDate" => "Last Login Date"
    "territory" => "Territory"
    "sicknessCover" => "Sickness cover"
    "photo" => "Photo"
    "comments" => "Comments"
    "proPharmaGLN" => "GLN"
    "proPharmaToken" => "Token"
    "proPharmaLoginToken" => ""
    "proPharmaActive" => "Active"
    "proPharmaTokeTimeStamp" => "Timestamp"
    "generateProPharmaToken" => ""
    "chain" => "Chain / Group"
    "companyName" => "Name of the pharmacy"
    "companyAddressLocationCode" => "Postcode"
    "companyAddressStreet" => "Street + Nr"
    "gln" => "GLN (Company)"
    "companyContactPref" => "Prefered Contact Type"
  ]
  "order" => array:31 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => ""
    "offer" => "Offer"
    "orderNumber" => "Order number"
    "status" => "Status"
    "type" => "Type"
    "wholesaler" => "Wholesaler"
    "wholesalerNumber" => "Wholesaler number"
    "street" => "Street"
    "houseNumber" => "House number"
    "locationCode" => "Location code / City"
    "gln" => "GLN"
    "sanofiCode" => "Sanofi code"
    "sum" => "Sum"
    "rebate" => "Rebate"
    "priceReduction" => "Price Reduction"
    "appliedRule" => "Applied Rule"
    "dateConfirmed" => "Date of Order Confirmation"
    "dateDenied" => "Date of Order Denial"
    "product" => "Product"
    "owner" => "Owner"
    "customer" => "Customer"
    "comment" => "Wishes & Comments"
    "proPharmaStatus" => "Pro Pharma Status"
    "orderItemList" => "Product/Quantity"
    "OrderListButtons" => "Approve"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formfield" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "group_uuid" => "Group UUID"
    "name" => "Name"
    "lang" => "Language"
    "label" => "Label"
    "type" => "Type"
    "data_type" => "Data Type"
    "required" => "Required"
    "initial_visible" => "Show field element (initially)"
    "width" => "Width"
    "options_width" => "Options width"
    "position" => "Position"
    "page" => "Page"
    "info" => "Info"
  ]
  "offeritem" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offer" => ""
    "product" => ""
    "startDelivery" => ""
    "endDelivery" => ""
    "quantityMultiplier" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "mailtemplate" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Internal name"
    "action" => "Type"
    "status" => "Active"
    "createdByLogin" => "Created by"
    "language" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "elearning" => array:22 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "type" => "Type"
    "lang" => "Language"
    "active" => "Active"
    "hidden" => "Hidden"
    "duration" => "Duration"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "elearning_video" => "Elearning Video"
    "elearning_image" => "Elearning Image"
    "speaker" => "Speaker"
    "accreditation" => "Accreditation"
    "form_id" => "Form"
  ]
  "webinar" => array:27 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "title" => "Title"
    "lang" => "Language"
    "active" => "Active (Only visible for admins if inactive)"
    "hidden" => "Hidden (Only visible for users with login)"
    "is_done" => "Webinar has ended"
    "time_date" => "Date"
    "time_from" => "Start Time"
    "time_to" => "End Time"
    "place" => "Place"
    "description" => "Description"
    "matnumber" => "MAT Number"
    "fph_number" => "FPH Number"
    "course_number" => "Course Number"
    "webinar_image" => "Webinar Image"
    "without_zoom" => "Without Zoom"
    "speaker" => "Speaker"
    "accreditation" => "Accreditation"
    "dates" => "Dates"
    "agenda" => "Agenda"
    "form_id" => "Form"
  ]
  "formconditionalfield" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "form_field_group_uuid" => "Form Field Group UUID"
    "form_field_value_group_uuid" => "Form Field Value Group UUID"
    "form_conditional_field_group_uuid" => "Form Conditional Field Group UUID"
    "action" => "Action"
    "position" => "Position"
  ]
  "cmscomponent" => array:49 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "parent_component_uuid" => "Parent Component UUID"
    "component" => "Component"
    "type" => "Type"
    "marginX" => "Margin X"
    "marginY" => "Margin Y"
    "marginTop" => "Margin Top"
    "marginBottom" => "Margin Bottom"
    "marginLeft" => "Margin Left"
    "marginRight" => "Margin Right"
    "paddingX" => "Padding X"
    "paddingY" => "Padding Y"
    "paddingTop" => "Padding Top"
    "paddingBottom" => "Padding Bottom"
    "paddingLeft" => "Padding Left"
    "paddingRight" => "Padding Right"
    "alignment" => "Alignment"
    "font" => "Font"
    "fontSize" => "Font Size"
    "textTransform" => "Text Transform"
    "textDecoration" => "Text Decoration"
    "width" => "Width"
    "height" => "Height"
    "color" => "Color"
    "hoverColor" => "Hover Color"
    "backgroundColor" => "Background Color"
    "hoverBackgroundColor" => "Hover Background Color"
    "borderColor" => "Border Color"
    "hoverBorderColor" => "Hover Border Color"
    "backgroundImage" => "Background Image"
    "borderRadius" => "Border Radius"
    "gapX" => "Gap X"
    "gapY" => "Gap Y"
    "justifyContent" => "Justify Content"
    "alignItems" => "Align Items"
    "form_uuid" => "Form UUID"
    "buttonColor" => "Button Color"
    "buttonBackgroundColor" => "Button Background Color"
    "boxShadow" => "Box Shadow"
    "boxShadowColor" => "Box Shadow Color"
    "overlay" => "Overlay"
    "target" => "Target"
    "position" => "Position"
  ]
  "canton" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "short" => "Name"
    "name_de" => "German Name"
    "name_fr" => "Italian Name"
    "name_it" => "French Name"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "companychain" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offerpopup" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offer" => ""
    "offerRule" => ""
    "language" => ""
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "formfieldvalue" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_field_uuid" => "Form Field UUID"
    "group_uuid" => "Group UUID"
    "value" => "Value"
    "position" => "Position"
    "info" => "Info"
    "correct_answer" => "Correct Answer"
  ]
  "formmailconfirmation" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "mailtemplate_uuid" => "Template UUID"
    "recipient_type" => "Recipient Type"
    "recipient_email" => "Recipient Email"
  ]
  "languagecomponent" => array:13 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "language" => "Language Code"
    "content" => "Content"
    "field" => ""
    "entityId" => ""
    "internalcategory" => "Internal Category"
    "moduleId" => "Module Id"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "zoomregistration" => array:9 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "role" => "Name"
    "zoomId" => ""
    "zoomWebinarId" => ""
  ]
  "cmsupload" => array:11 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "file_name" => "Name"
    "file_size" => "Size"
    "file_type" => "Type"
    "file_path" => "Path"
    "upload_type" => "Upload type"
  ]
  "cmsmenulink" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "page_uuid" => "Page UUID"
    "target" => "Target"
    "visibility" => "Visibility"
    "position" => "Position"
  ]
  "offerruleoptionitem" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "offerRuleOption" => "Offer Rule Option"
    "checkFor" => "Check for"
    "value" => "Value"
    "product" => "Product"
    "type" => "Type"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "offer" => array:20 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "name" => "Name"
    "slug" => "Slug"
    "startTime" => "Start Time"
    "endTime" => "End Time"
    "design" => "Design"
    "status" => "Status"
    "offerLink" => "Link to other offer"
    "offerProduct" => "Products"
    "offerRule" => "Rebaterules"
    "offerPopup" => "Popups"
    "language" => "Content"
    "filterCanton" => "Allow only for Canton"
    "filterLocationCode" => "Allow only for Location code"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "form" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "name" => "Name"
    "type" => "Type"
    "lang_de" => "Language DE"
    "lang_fr" => "Language FR"
    "lang_it" => "Language IT"
    "multiple_submit" => "Multiple Submit"
    "returnurl" => "Return URL"
    "returnurl_error" => "Error Return URL"
    "external_embedding" => "Allow external embedding"
  ]
  "formstore" => array:18 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "uuid" => "UUID"
    "form_uuid" => "Form UUID"
    "lang" => "Language"
    "type" => "Type"
    "parent_uuid" => "Parent UUID"
    "email" => "Email"
    "first_name" => "First Name"
    "last_name" => "Last Name"
    "zoom_id" => "Zoom ID"
    "zoom_api_id" => "Zoom API ID"
    "zoom_link" => "Zoom Link"
    "zoom_role" => "Zoom Role"
    "result" => "Result"
  ]
  "orderitem" => array:14 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "order" => "Order"
    "product" => "Product"
    "dateDelivery" => "Earliest delivery date"
    "wholesaler" => "Wholesaler"
    "integrationId" => "Code"
    "quantity" => "Quantity"
    "price" => "Price"
    "customer" => "Customer"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "aclright" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "nameDeu" => ""
    "nameEnu" => ""
    "technicalName" => ""
    "module" => ""
    "accessRight" => "Access Right"
    "customRight" => "Custom Right"
  ]
  "elmanager" => array:13 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "name" => "Name"
    "user" => "Owner"
    "jsonString" => "EditList Json String"
    "type" => "Type"
    "module" => "Module"
    "isDefault" => "Default"
    "integrationId" => "Code"
    "createdByLogin" => "Created By"
  ]
  "roles" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "nameDeu" => "Name DE"
    "nameEnu" => "Name EN"
    "toolbarDirs" => "Foldable Toolbar"
  ]
  "rights" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "nameDeu" => "Name German"
    "nameEnu" => "Name English"
    "technicalName" => "Technical Name"
    "color" => "Color"
    "icon" => "Icon"
    "group" => "Group"
    "descriptionDeu" => "Description German"
    "descriptionEnu" => "Description English"
    "isModuleRight" => "App Recht"
    "checkedFlag" => "Active"
  ]
  "asset" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "objectTitle" => "Objekt Titel"
    "fname" => "Field Name"
    "accessType" => "Access Type"
    "type" => "type"
    "owner" => "Owner"
    "fieldName" => "technical Fieldname"
    "attachmentPath" => "Path"
    "moduleEntity" => "Entity (w/Module)"
    "attachment" => "Uploads"
  ]
  "aclrole" => array:8 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "nameDeu" => ""
    "nameEnu" => ""
  ]
  "deletecontrol" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "Code"
    "module" => "Module"
    "daysTilDelete" => "Permanent deletion after..."
    "daysTilWarning" => "Warning about ther permanent deletion after..."
    "daysTilUnusedWarning" => "Not used warning after..."
    "createdByLogin" => "Created by"
    "attachment" => "Attachment"
  ]
  "searchquery" => array:12 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "name" => "Name"
    "user" => "Owner"
    "query" => "Filter Query (with FTS)"
    "type" => "Type"
    "module" => "Module"
    "integrationId" => "Code"
    "createdByLogin" => "Created By"
  ]
]
TOOLTIPTYPESLOV
array:4 [
  "page" => "Pages"
  "test" => " Test BC"
  "allfields" => "Allfields Test BC"
  "asset" => "Assets"
]
TOOLTIPFIELDARRAY
array:4 [
  "page" => array:21 [
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "name" => "Name"
    "slug" => "Slug"
    "title_ita" => "Title (Italienisch)"
    "title_fra" => "Title (Französisch)"
    "title_ger" => "Title (Deutsch)"
    "content_ita" => "Content (Italienisch)"
    "content_fra" => "Content (Französisch)"
    "content_ger" => "Content (Deutsch)"
    "snippet_ita" => "Snippet (Italienisch)"
    "snippet_fra" => "Snippet (Französisch)"
    "snippet_ger" => "Snippet (Deutsch)"
    "style_css" => "CSS"
    "redirect" => "Redirect"
    "public" => "Public"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "test" => array:9 [
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "allfields" => array:39 [
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "currency" => "Currency (€)"
    "groupDateFields" => "Dates"
    "dateVal" => "Date"
    "dateTime" => "Date Time"
    "time" => "Time"
    "lovDrilldownFields" => "LOV's & Drilldowns"
    "user" => "Drilldown (User Entity)"
    "status" => "Status (LOV)"
    "statusRadio" => "Language (Radio)"
    "statusBool" => "Bool"
    "longContentFields" => "Large Content Fields"
    "comments" => "Comment Pure"
    "commentsHTML" => "Comment HTML"
    "attachmentFields" => "Attachment Fields"
    "attachment" => "Attachment"
    "attachmentMulti" => "Attachment Multi"
    "relFields" => "Relational Fields"
    "userNm" => "Mitarbeiter (NM)"
    "status1N" => "Status (1N)"
    "label" => "Label"
    "dynamicFields" => "Dynamic Fields"
    "statusDyn" => "Status (LOV-Dynamic)"
    "statusMulti" => "Status (Multiselect)"
    "statusMultiDyn" => "Status (Multiselect Dynamic)"
    "multicheck" => "Status (Multicheck)"
    "statusPredict" => "Status (LOV Prediction)"
    "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
    "radioCustom" => "Status (RadioCustom)"
    "blade" => "Custom Blade Field"
    "email" => "Email"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "asset" => array:14 [
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "objectTitle" => "Objekt Titel"
    "fname" => "Field Name"
    "accessType" => "Access Type"
    "type" => "type"
    "owner" => "Owner"
    "fieldName" => "technical Fieldname"
    "attachmentPath" => "Path"
    "moduleEntity" => "Entity (w/Module)"
    "attachment" => "Uploads"
  ]
]
TOOLTIPALLFIELDS
array:63 [
  "created" => "Created"
  "createdBy" => "Created By"
  "updated" => "Updated"
  "updatedBy" => "Updated By"
  "integrationId" => "integrationId"
  "name" => "Name"
  "slug" => "Slug"
  "title_ita" => "Title (Italienisch)"
  "title_fra" => "Title (Französisch)"
  "title_ger" => "Title (Deutsch)"
  "content_ita" => "Content (Italienisch)"
  "content_fra" => "Content (Französisch)"
  "content_ger" => "Content (Deutsch)"
  "snippet_ita" => "Snippet (Italienisch)"
  "snippet_fra" => "Snippet (Französisch)"
  "snippet_ger" => "Snippet (Deutsch)"
  "style_css" => "CSS"
  "redirect" => "Redirect"
  "public" => "Public"
  "active" => "Active"
  "ocVersion" => "Optimistic Concurrency Version"
  "groupStandardFields" => "Standard Inputs"
  "string" => "String"
  "number" => "Number"
  "double" => "Double"
  "currency" => "Currency (€)"
  "groupDateFields" => "Dates"
  "dateVal" => "Date"
  "dateTime" => "Date Time"
  "time" => "Time"
  "lovDrilldownFields" => "LOV's & Drilldowns"
  "user" => "Drilldown (User Entity)"
  "status" => "Status (LOV)"
  "statusRadio" => "Language (Radio)"
  "statusBool" => "Bool"
  "longContentFields" => "Large Content Fields"
  "comments" => "Comment Pure"
  "commentsHTML" => "Comment HTML"
  "attachmentFields" => "Attachment Fields"
  "attachment" => "Uploads"
  "attachmentMulti" => "Attachment Multi"
  "relFields" => "Relational Fields"
  "userNm" => "Mitarbeiter (NM)"
  "status1N" => "Status (1N)"
  "label" => "Label"
  "dynamicFields" => "Dynamic Fields"
  "statusDyn" => "Status (LOV-Dynamic)"
  "statusMulti" => "Status (Multiselect)"
  "statusMultiDyn" => "Status (Multiselect Dynamic)"
  "multicheck" => "Status (Multicheck)"
  "statusPredict" => "Status (LOV Prediction)"
  "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
  "radioCustom" => "Status (RadioCustom)"
  "blade" => "Custom Blade Field"
  "email" => "Email"
  "objectTitle" => "Objekt Titel"
  "fname" => "Field Name"
  "accessType" => "Access Type"
  "type" => "type"
  "owner" => "Owner"
  "fieldName" => "technical Fieldname"
  "attachmentPath" => "Path"
  "moduleEntity" => "Entity (w/Module)"
]
TOOLTIPDESCRIPTIONFIELDS
array:4 [
  "page" => array:22 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "name" => "Name"
    "slug" => "Slug"
    "title_ita" => "Title (Italienisch)"
    "title_fra" => "Title (Französisch)"
    "title_ger" => "Title (Deutsch)"
    "content_ita" => "Content (Italienisch)"
    "content_fra" => "Content (Französisch)"
    "content_ger" => "Content (Deutsch)"
    "snippet_ita" => "Snippet (Italienisch)"
    "snippet_fra" => "Snippet (Französisch)"
    "snippet_ger" => "Snippet (Deutsch)"
    "style_css" => "CSS"
    "redirect" => "Redirect"
    "public" => "Public"
    "active" => "Active"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "test" => array:10 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "allfields" => array:40 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "groupStandardFields" => "Standard Inputs"
    "string" => "String"
    "number" => "Number"
    "double" => "Double"
    "currency" => "Currency (€)"
    "groupDateFields" => "Dates"
    "dateVal" => "Date"
    "dateTime" => "Date Time"
    "time" => "Time"
    "lovDrilldownFields" => "LOV's & Drilldowns"
    "user" => "Drilldown (User Entity)"
    "status" => "Status (LOV)"
    "statusRadio" => "Language (Radio)"
    "statusBool" => "Bool"
    "longContentFields" => "Large Content Fields"
    "comments" => "Comment Pure"
    "commentsHTML" => "Comment HTML"
    "attachmentFields" => "Attachment Fields"
    "attachment" => "Attachment"
    "attachmentMulti" => "Attachment Multi"
    "relFields" => "Relational Fields"
    "userNm" => "Mitarbeiter (NM)"
    "status1N" => "Status (1N)"
    "label" => "Label"
    "dynamicFields" => "Dynamic Fields"
    "statusDyn" => "Status (LOV-Dynamic)"
    "statusMulti" => "Status (Multiselect)"
    "statusMultiDyn" => "Status (Multiselect Dynamic)"
    "multicheck" => "Status (Multicheck)"
    "statusPredict" => "Status (LOV Prediction)"
    "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
    "radioCustom" => "Status (RadioCustom)"
    "blade" => "Custom Blade Field"
    "email" => "Email"
    "ocVersion" => "Optimistic Concurrency Version"
  ]
  "asset" => array:15 [
    "id" => "Id"
    "created" => "Created"
    "createdBy" => "Created By"
    "updated" => "Updated"
    "updatedBy" => "Updated By"
    "integrationId" => "integrationId"
    "objectTitle" => "Objekt Titel"
    "fname" => "Field Name"
    "accessType" => "Access Type"
    "type" => "type"
    "owner" => "Owner"
    "fieldName" => "technical Fieldname"
    "attachmentPath" => "Path"
    "moduleEntity" => "Entity (w/Module)"
    "attachment" => "Uploads"
  ]
]
LOVLISTSTYPESLOV
array:58 [
  "cmslanguage" => "Cmslanguage"
  "offerruleoption" => "Offerruleoption"
  "zoomwebinar" => "Zoom Webinar"
  "brand" => "Brand"
  "userblacklist" => "Userblacklist"
  "loginhero" => "Loginhero"
  "page" => "Pages"
  "test" => " Test BC"
  "formstorevalue" => "Formstorevalue"
  "producttraining" => "Producttraining"
  "cmspage" => "Cmspage"
  "product" => "Product"
  "language" => "Language"
  "offerrule" => "Offerrule"
  "allfields" => "Allfields Test BC"
  "user" => "Employees"
  "order" => "Order"
  "formfield" => "Formfield"
  "offeritem" => "Offeritem"
  "mailtemplate" => "Mail template"
  "elearning" => "E-Learning"
  "webinar" => "Webinar"
  "formconditionalfield" => "Formconditionalfield"
  "cmscomponent" => "Cmscomponent"
  "canton" => "Canton"
  "companychain" => "Companychain"
  "offerpopup" => "Offerpopup"
  "formfieldvalue" => "Formfieldvalue"
  "formmailconfirmation" => "Formmailconfirmation"
  "languagecomponent" => "Languagecomponent"
  "zoomregistration" => "Zoomregistration"
  "cmsupload" => "Cmsupload"
  "cmsmenulink" => "Cmsmenulink"
  "offerruleoptionitem" => "Offerruleoptionitem"
  "offer" => "Offer"
  "form" => "Form"
  "formstore" => "Formstore"
  "orderitem" => "Orderitem"
  "aclright" => "Aclright"
  "multicheck" => "Custom Multicheck Radios and Checkboxes"
  "kanban" => "Kanban Boards"
  "tooltip" => "Tooltip Boards"
  "elmanager" => "Searchqueries"
  "roles" => "Roles"
  "rights" => "Rights"
  "asset" => "Assets"
  "aclrole" => "Aclrole"
  "deletecontrol" => "DSGVO Settings"
  "searchquery" => "Searchqueries"
  "playground" => "playground"
  "bootstrapper" => "bootstrapper"
  "frontend" => "frontend"
  "formdesigner" => "formdesigner"
  "certificate" => "certificate"
  "modulemanager" => "modulemanager"
  "cms" => "cms"
  "logs" => "logs"
  "config" => "config"
]
LOVLISTSFIELDARRAY
array:4 [
  "statusDyn" => "Status (LOV-Dynamic)"
  "statusMultiDyn" => "Status (Multiselect Dynamic)"
  "statusPredictDyn" => "Status (LOV-Dynamic Prediction)"
  "group" => "Group"
]
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
"14572"
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
"3.144.150.112"
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_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_COOKIE
"PHPSESSID=5ou205uu2fe5cpg8ks6357e8po"
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
1715925874.9534
REQUEST_TIME
1715925874
empty
0. Whoops\Handler\PrettyPageHandler