/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Database/traits/caching.php
}
// Write the cache file.
file_put_contents( $this->getCachePath( $token ), json_encode( $result ) );
// Reset cache flags to avoid future queries on the same object of the store.
$this->resetCacheFlags();
// Return the data.
return $result;
}
// Use cache will first check if the cache exists, then re-use it.
// If cache dosent exists then call makeCache and return the data.
private function useExistingCache() {
$token = $this->getCacheToken();
// Check if cache file exists.
if ( file_exists( $this->getCachePath( $token ) ) ) {
// Reset cache flags to avoid future queries on the same object of the store.
$this->resetCacheFlags();
// Return data from the found cache file.
return json_decode( file_get_contents( $this->getCachePath( $token ) ), true );
} else {
// Cache file was not found, re-generate the cache and return the data.
return $this->reGenerateCache();
}
}
// This method would make a unique token for the current query.
// We would use this hash token as the id/name of the cache file.
private function getCacheToken() {
$query = json_encode( [
'store' => $this->storePath,
'limit' => $this->limit,
'skip' => $this->skip,
'conditions' => $this->conditions,
'orConditions' => $this->orConditions,
'in' => $this->in,
'notIn' => $this->notIn,
'order' => $this->orderBy,
'search' => $this->searchKeyword
] );
Arguments
"file_get_contents(/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs//core/storage/bcStorage/Store/cache/f6b3782955b524b71560acb17c673486.json): failed to open stream: No such file or directory"
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Database/traits/caching.php
}
// Write the cache file.
file_put_contents( $this->getCachePath( $token ), json_encode( $result ) );
// Reset cache flags to avoid future queries on the same object of the store.
$this->resetCacheFlags();
// Return the data.
return $result;
}
// Use cache will first check if the cache exists, then re-use it.
// If cache dosent exists then call makeCache and return the data.
private function useExistingCache() {
$token = $this->getCacheToken();
// Check if cache file exists.
if ( file_exists( $this->getCachePath( $token ) ) ) {
// Reset cache flags to avoid future queries on the same object of the store.
$this->resetCacheFlags();
// Return data from the found cache file.
return json_decode( file_get_contents( $this->getCachePath( $token ) ), true );
} else {
// Cache file was not found, re-generate the cache and return the data.
return $this->reGenerateCache();
}
}
// This method would make a unique token for the current query.
// We would use this hash token as the id/name of the cache file.
private function getCacheToken() {
$query = json_encode( [
'store' => $this->storePath,
'limit' => $this->limit,
'skip' => $this->skip,
'conditions' => $this->conditions,
'orConditions' => $this->orConditions,
'in' => $this->in,
'notIn' => $this->notIn,
'order' => $this->orderBy,
'search' => $this->searchKeyword
] );
Arguments
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs//core/storage/bcStorage/Store/cache/f6b3782955b524b71560acb17c673486.json"
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Database/SleekDB.php
{
if (!$storeName or empty($storeName)) throw new \Exception('Store name was not valid');
$_dbInstance = new \Sucurema\Core\SleekDB($dataDir, $options);
$_dbInstance->storeName = $storeName;
// Boot store.
$_dbInstance->bootStore();
// Initialize variables for the store.
$_dbInstance->initVariables();
return $_dbInstance;
}
// Read store objects.
public function fetch()
{
$fetchedData = null;
// Check if data should be provided from the cache.
if ($this->makeCache === true) {
$fetchedData = $this->reGenerateCache(); // Re-generate cache.
} else if ($this->useCache === true) {
$fetchedData = $this->useExistingCache(); // Use existing cache else re-generate.
} else {
$fetchedData = $this->findStoreDocuments(); // Returns data without looking for cached data.
}
$this->initVariables(); // Reset state.
return $fetchedData;
}
// Creates a new object in the store.
// The object is a plaintext JSON document.
public function insert($storeData = false)
{
// Handle invalid data
if (!$storeData or empty($storeData)) throw new \Exception('No data found to store');
// Make sure that the data is an array
if (!is_array($storeData)) throw new \Exception('Storable data must an array');
$storeData = $this->writeInStore($storeData);
// Check do we need to wipe the cache for this store.
if ($this->deleteCacheOnCreate === true) $this->_emptyAllCache();
return $storeData;
}
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Modules/Modules.php
use SleekHandler;
private $store;
private $result = [];
/**
* Search ModuleSleek DB
*
* @param $self
* @param string $objectCode
* @param string $fieldTecKey
* @param $value
* @return self
*/
public function _findByObjectcode($self, string $objectCode)
{
$self->getStore();
$self->result = $this->store
->where("bcobjectcode", "=",$objectCode)
->fetch();
return $self;
}
/**
* open Store for Work
*
* @param [type] $self
* @param string $objectCode
* @return SleekDB
* @throws \Exception
*/
public function _getStore($self)
{
if ($self->store == null) {
$dataDir = get_include_path() . self::STORAGE_PATH;
$self->store = \SucSleekDB::store(
'Store',
$dataDir
);
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/ATraits/Facade.php
}
/**
* our caller to access static classes
* @param $name
* @param $arguments
* @return mixed
* @throws \Exception
*/
public static function __callStatic($name, $arguments)
{
if (!method_exists(__CLASS__, "_".$name) && !method_exists(get_called_class(), "_".$name) ) {
throw new \Exception( 'Unknown class method: '.$name);
}
$class = get_called_class();
$self = new $class();
array_unshift($arguments, $self);
return $self->{"_".$name}(...$arguments);
}
// definitions for i
}
Arguments
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/bc/buscomp.class.php
public static function load_custom_lov($field_name, $parent_row_id, $filter)
{
// Can be implemented in child classes
}
protected function post_init($user_id)
{
if ($this->revision) {
$this->fields['revision'] = array("Revision", 'revision', null, $this->BC_FIELD_TYPE_NUMBER, 10, null, $user_id, $this->BC_FIELD_GUI_MODE_RO, -1, $this->BC_FIELD_DB_MODE_NORMAL, false, false);
$this->fields['revisionMainId'] = array("Revision Master ID", 'revision_main_id', null, $this->BC_FIELD_TYPE_NUMBER, 10, null, $user_id, $this->BC_FIELD_GUI_MODE_HIDDEN, -1, $this->BC_FIELD_DB_MODE_NORMAL, false, false);
}
if ($this->hasOptimisticConcurrency) {
$this->fields['ocVersion'] = array("Optimistic Concurrency Version", 'oc_version', null, $this->BC_FIELD_TYPE_NUMBER, 10, null, "0", $this->BC_FIELD_GUI_MODE_HIDDEN, 1, $this->BC_FIELD_DB_MODE_NORMAL, false, false);
}
$this->loadTooltipConfig();
$this->loadDrillDownConfig();
if ((isset($_SESSION["BCREGISTRYNAMEDROUTES"]) && $_SESSION["BCREGISTRYNAMEDROUTES"] == true)
&& (isset($_SESSION["storeInit"]) && $_SESSION["storeInit"] == true)
) {
$module = \SucModules::findByObjectcode($this->objectCode)->first();
$bcName = issetor($module["bcname"], '');
if ($bcName != "") {
$modelName = ucfirst($bcName) . "Model";
include_once get_include_path() . "/core/storage/modelCache/modelCache.php";
$this->model = new $modelName(null, null, $this);
}
}
if (!isset($_SESSION["IBCS"])) {
$_SESSION["IBCS"] = [];
} else {
$class = get_class($this);
if (!isset($_SESSION["IBCS"][$class])) {
$_SESSION["IBCS"][$class] = $this;
}
}
}
/**
* @return bool
Arguments
"findByObjectcode"
array:2 [
0 => SucModules {#158}
1 => "menu"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/modules/menu/bc/menubuscomp.class.php
"belongsto" => array(
$this->BC_DRILLDOWN_CONFIG_PICKER => false,
$this->BC_DRILLDOWN_CONFIG_AUTOCOMPLETE => true,
$this->BC_DRILLDOWN_CONFIG_AUTOCOMPLETE_MODULE => "menu",
$this->BC_DRILLDOWN_CONFIG_ADDITIONAL_SEARCHQUERY => "t1.menu_level = 0 and t1.deleted = 0"
),
);
// SQL Label
$this->sqlLabel = 't1.name';
/*
$this->bc_lov_field_hierarchies['owner'] = array(
'bla',
'bla_id=%s'
);*/
$this->add_pre_query_standard1($user_id);
$this->post_init($user_id);
}
public function get_caption_string($row) {
return $row['name'];
}
}
?>
Arguments
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/modules/frontend/classes/Menu.php
$permission = 0;
if (\SucUser::isLogged()) {
$permission = 1;
$role = \SucUser::getColumnValue('role_id', null);
if ($userId != null && $role == 2) {
$permission = 2;
}
if (is_administrator_user()) {
$permission = 3;
}
}
$menu = new \MenuBusComp();
$menu->init($userId);
// the higher the "level" the more is shown
$menuData = \SucDatabase::FetchBC($menu)
->useAllFields()
->where('t1.status_id = 1 and t1.permission_id <= :permission', ['permission' => $permission])
->orderBy('t1.position ASC')
->run();
// check if element is active
foreach ($menuData as $key => $menuItem) {
$menuData[$key]['active'] = ($menuItem['slug'] === \SucRouter::getActiveUrlPath() ? true : false);
}
$menuBC = \SucRegistry::LoadBC('menu');
for ($i = 0; $i < count($menuData); $i++) {
$menuImages = $menuBC->get_attachments("imgSubMenu", $menuData[$i]['id']);
Arguments
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/eac7bcc32d63d6ef2fb26b0a93eb93a74e023c33.bladec
<!--header area start-->
<?php if(isset($hasMenu) && $hasMenu == true): ?>
<?php
$i = 0; $j = 0;
// we're getting the menu data at the runtime
$menuData = \SucuShop\Menu::Load();
$cartData = \SucuShop\Cart::loadminiCart();
$hierarchie = \SucuShop\Menu::LoadFirstHierarchieLvl();
$hierarchieLvl2 = \SucuShop\Menu::LoadSecondHierarchieLvl();
$hierarchieLvl3 = \SucuShop\Menu::LoadThirdHierarchieLvl();
$getFamilyType = \SucDatabase::Fetch('icrm_producthierarchie')
->column('family_type', 'family_type_ids')
->run();
foreach ($getFamilyType as $famId) {
$famids[] = $famId['family_type_ids'];
}
$subMenuData = \SucuShop\Menu::LoadSubMenu();
$getBelongings = \SucuShop\Menu::LoadSubMenu();
foreach ($getBelongings as $getBel) {
$getBels[] = $getBel['item_ref'];
}
$areaImageArray = ['area_abformung.jpg','area_restauration.jpg','area_weitere.jpg','area_zubehor.jpg'];
$areaImagePositionArray = [0, -3, -6, -9, -12, -15, -18, -21, -24, -27, -30];
?>
<!--offcanvas menu area start-->
<div class="off_canvars_overlay">
</div>
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/eac7bcc32d63d6ef2fb26b0a93eb93a74e023c33.bladec"
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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) {
Arguments
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs//core/storage/cache/frontend//eac7bcc32d63d6ef2fb26b0a93eb93a74e023c33.bladec"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Render/Blade/BladeOne.php
}
}
/**
* Macro of function run
*
* @param $view
* @param array $variables
* @return string
* @throws Exception
*/
public function runChild($view, $variables = [])
{
if (\is_array($variables)) {
$newVariables = \array_merge($this->variables, $variables);
} else {
$this->showError("run/include", "Include/run variables should be defined as array ['idx'=>'value']", true);
return "";
}
return $this->runInternal($view, $newVariables, false, false, $this->isRunFast);
}
/**
* run the blade engine. It returns the result of the code.
*
* @param $view
* @param array $variables
* @param bool $forced if true then it recompiles no matter if the compiled file exists or not.
* @param bool $isParent
* @param bool $runFast if true then the code is not compiled neither checked and it runs directly the compiled
* version.
* @return string
* @throws Exception
*/
private function runInternal($view, $variables = [], $forced = false, $isParent = true, $runFast = false)
{
if ($isParent) {
if (\count($this->variablesGlobal) > 0) {
$this->variables = \array_merge($variables, $this->variablesGlobal);
$variables = $this->variables;
Arguments
"parts.menu"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
false
false
0
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/b28b7af69320201d1cf206ebf28373980add1451.bladec
<!DOCTYPE html>
<html>
<?php echo $this->runChild("parts.head"); ?>
<body>
<link rel="stylesheet" href="https://cdn.consentmanager.mgr.consensu.org/delivery/cmp.min.css" />
<script>window.gdprAppliesGlobally=true;window.cmp_id=15474;window.cmp_params="";window.cmp_host="consentmanager.mgr.consensu.org";window.cmp_cdn="cdn.consentmanager.mgr.consensu.org";function cmp_getlang(j){if(typeof(j)!="boolean"){j=true}if(j&&typeof(cmp_getlang.usedlang)=="string"&&cmp_getlang.usedlang!==""){return cmp_getlang.usedlang}var g=["DE","EN","FR","IT","NO","DA","FI","ES","PT","RO","BG","ET","EL","GA","HR","LV","LT","MT","NL","PL","SV","SK","SL","CS","HU","RU","SR","ZH","TR","UK"];var c=[];var f=location.hash;var e=location.search;var a="languages" in navigator?navigator.languages:[];if(f.indexOf("cmplang=")!=-1){c.push(f.substr(f.indexOf("cmplang=")+8,2))}else{if(e.indexOf("cmplang=")!=-1){c.push(e.substr(e.indexOf("cmplang=")+8,2))}else{if("cmp_setlang" in window&&window.cmp_setlang!=""){c.push(window.cmp_setlang.toUpperCase())}else{if(a.length>0){for(var d=0;d<a.length;d++){c.push(a[d])}}}}}if("language" in navigator){c.push(navigator.language)}if("userLanguage" in navigator){c.push(navigator.userLanguage)}var h="";for(var d=0;d<c.length;d++){var b=c[d].toUpperCase();if(b.indexOf("-")!=-1){b=b.substr(0,2)}if(g.indexOf(b)!=-1){h=b;break}}if(h==""&&typeof(cmp_getlang.defaultlang)=="string"&&cmp_getlang.defaultlang!==""){return cmp_getlang.defaultlang}else{if(h==""){h="EN"}}h=h.toUpperCase();return h}(function(){var a="";var c="_en";if("cmp_getlang" in window){a=window.cmp_getlang().toLowerCase();c="_"+a}var b=document.createElement("script");b.src="https://"+window.cmp_host+"/delivery/cmp.php?id="+window.cmp_id+"&h="+encodeURIComponent(location.href)+"&"+window.cmp_params+(document.cookie.length>0?"&__cmpfcc=1":"")+"&l="+a+"&o="+(new Date()).getTime();b.type="text/javascript";b.setAttribute("data-cmp-ab",1);b.async=true;if(document.body){document.body.appendChild(b)}else{if(document.currentScript){document.currentScript.parentElement.appendChild(b)}else{document.write(b.outerHTML)}}var b=document.createElement("script");b.src="https://"+window.cmp_cdn+"/delivery/cmp"+c+".min.js";b.type="text/javascript";b.setAttribute("data-cmp-ab",1);b.async=true;if(document.body){document.body.appendChild(b)}else{if(document.currentScript){document.currentScript.parentElement.appendChild(b)}else{document.write(b.outerHTML)}}window.cmp_addFrame=function(e){if(!window.frames[e]){if(document.body){var d=document.createElement("iframe");d.style.cssText="display:none";d.name=e;document.body.appendChild(d)}else{window.setTimeout('window.cmp_addFrame("'+e+'")',10)}}};window.cmp_rc=function(j){var d=document.cookie;var g="";var f=0;while(d!=""&&f<100){f++;while(d.substr(0,1)==" "){d=d.substr(1,d.length)}var h=d.substring(0,d.indexOf("="));if(d.indexOf(";")!=-1){var e=d.substring(d.indexOf("=")+1,d.indexOf(";"))}else{var e=d.substr(d.indexOf("=")+1,d.length)}if(j==h){g=e}i=d.indexOf(";")+1;if(i==0){i=d.length}d=d.substring(i,d.length)}return(g)};window.cmp_stub=function(){var d=arguments;__cmapi.a=__cmapi.a||[];if(!d.length){return __cmapi.a}else{if(d[0]==="ping"){if(d[1]===2){d[2]({gdprApplies:gdprAppliesGlobally,cmpLoaded:false,cmpStatus:"stub",displayStatus:"hidden",apiVersion:"2.0",cmpId:31},true)}else{d[2]({gdprAppliesGlobally:gdprAppliesGlobally,cmpLoaded:false},true)}}else{if(d[0]==="getUSPData"){d[2]({version:1,uspString:window.cmp_rc("")},true)}else{if(d[0]==="getTCData"){__cmapi.a.push([].slice.apply(d))}else{if(d[0]==="addEventListener"){__cmapi.a.push([].slice.apply(d))}else{if(d.length==4&&d[3]===false){d[2]({},false)}else{__cmapi.a.push([].slice.apply(d))}}}}}}};window.cmp_msghandler=function(h){var d=typeof h.data==="string";try{var g=d?JSON.parse(h.data):h.data}catch(j){var g=null}if(typeof(g)==="object"&&g!==null&&"__cmpCall" in g){var f=g.__cmpCall;window.__cmp(f.command,f.parameter,function(l,k){var e={__cmpReturn:{returnValue:l,success:k,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__cmapiCall" in g){var f=g.__cmapiCall;window.__cmapi(f.command,f.parameter,function(l,k){var e={__cmapiReturn:{returnValue:l,success:k,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__uspapiCall" in g){var f=g.__uspapiCall;window.__uspapi(f.command,f.version,function(l,k){var e={__uspapiReturn:{returnValue:l,success:k,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__tcfapiCall" in g){var f=g.__tcfapiCall;window.__tcfapi(f.command,f.version,function(l,k){var e={__tcfapiReturn:{returnValue:l,success:k,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")},f.parameter)}};window.cmp_setStub=function(d){if(!(d in window)||(typeof(window[d])!=="function"&&typeof(window[d])!=="object"&&(typeof(window[d])==="undefined"||window[d]!==null))){window[d]=window.cmp_stub;window[d].msgHandler=window.cmp_msghandler;if(window.addEventListener){window.addEventListener("message",window.cmp_msghandler,false)}else{window.attachEvent("onmessage",window.cmp_msghandler)}}};window.cmp_addFrame("__cmapiLocator");window.cmp_addFrame("__cmpLocator");window.cmp_addFrame("__uspapiLocator");window.cmp_addFrame("__tcfapiLocator");window.cmp_setStub("__cmapi");window.cmp_setStub("__cmp");window.cmp_setStub("__tcfapi");window.cmp_setStub("__uspapi")})();</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-10092559-17"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-10092559-17');
</script>
<?php echo $this->runChild("parts.menu"); ?>
<section class="page-section">
<?php echo $this->runChild("parts.breadcrump"); ?>
<?php echo $this->runChild("parts.breadcrump-large"); ?>
<?php echo $this->yieldContent("content"); ?>
</section>
<?php echo $this->runChild("parts.footer"); ?>
<?php echo $this->runChild("parts.scripts"); ?>
<?php echo $this->yieldContent("script"); ?>
</body>
</html>
Arguments
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/b28b7af69320201d1cf206ebf28373980add1451.bladec"
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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) {
Arguments
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs//core/storage/cache/frontend//b28b7af69320201d1cf206ebf28373980add1451.bladec"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/init/Render/Blade/BladeOne.php
}
}
/**
* Macro of function run
*
* @param $view
* @param array $variables
* @return string
* @throws Exception
*/
public function runChild($view, $variables = [])
{
if (\is_array($variables)) {
$newVariables = \array_merge($this->variables, $variables);
} else {
$this->showError("run/include", "Include/run variables should be defined as array ['idx'=>'value']", true);
return "";
}
return $this->runInternal($view, $newVariables, false, false, $this->isRunFast);
}
/**
* run the blade engine. It returns the result of the code.
*
* @param $view
* @param array $variables
* @param bool $forced if true then it recompiles no matter if the compiled file exists or not.
* @param bool $isParent
* @param bool $runFast if true then the code is not compiled neither checked and it runs directly the compiled
* version.
* @return string
* @throws Exception
*/
private function runInternal($view, $variables = [], $forced = false, $isParent = true, $runFast = false)
{
if ($isParent) {
if (\count($this->variablesGlobal) > 0) {
$this->variables = \array_merge($variables, $this->variablesGlobal);
$variables = $this->variables;
Arguments
"main"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
false
false
0
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/08ef75a825df4c40cb57d6934b831f1dc3b9c768.bladec
<form action="#">
<div id="slider-range"></div>
<button type="submit"><?php call_user_func($this->customDirectives['l'],'lang.shop_title_filter_by_price_button'); ?></button>
<input type="text" name="price" id="amount" />
</form>
</div>
-->
</div>
</aside>
<!--sidebar widget end-->
</div>
</div>
</div>
</div>
<!--shop area end-->
<?php $this->stopSection(); ?>
<?php if (@$_shouldextend[1]) { echo $this->runChild("main"); } ?>
Arguments
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/storage/cache/frontend/08ef75a825df4c40cb57d6934b831f1dc3b9c768.bladec"
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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) {
Arguments
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs//core/storage/cache/frontend//08ef75a825df4c40cb57d6934b831f1dc3b9c768.bladec"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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()] = [];
}
}
Arguments
"sites.shop"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
0
true
0
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/modules/frontend/classes/Renderer.php
if (!empty($image)) {
static::setVar(static::PAGE_BREADCRUMP_IMAGE, $image);
}
}
}
public static function setPageTitle(string $title) {
static::setVar(self::PAGE_TITLE, $title);
}
public static function run(string $template, array $data = []) {
if (static::$instance == null) {
static::$instance = new Renderer();
}
$data = array_merge(static::$instance->variables, $data);
echo static::$instance->blade->run($template, $data);
}
}
Arguments
"sites.shop"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/modules/frontend/classes/Shop.php
Renderer::run("sites.shop", [
'shopData' => $shopData,
'products' => $this->products,
'areas' => $this->fetchArea(),
'families' => $this->fetchFamily(),
'brands' => $this->fetchBrand(),
'filters' => $availableFilters,
// 'techniques' => $this->fetchTechnique(),
// 'materials' => $this->fetchMaterial(),
// 'viscosities'=> $this->fetchViscosity(),
// 'forms' => $this->fetchForm(),
// 'categories' => $this->buildCateogries(),
// 'options' => $this->fetchOptions(),
// 'tags' => $this->fetchTags(),
'pageNation' => $this->buildPageNation(),
'activeArea' => $activeArea,
'activeFamily' => $activeFamily,
'activeBrand' => $activeBrand,
'query' => $query,
]);
}
private function filterVisibility($availableFilters) {
// lets collect all filter we have
$allProducts = $this->fetchProducts(0, 10000);
$possibleFilters = [];
// use our definition to iterate
foreach ($this->filterDisplayHierarchy as $entity) {
$possibleFilters[$entity[3]] = [];
}
// gather all possible filter options
foreach ($allProducts as $product) {
foreach ($possibleFilters as $filterName => $content) {
Arguments
"sites.shop"
array:24 [
"pagetitle" => "Produktauswahl"
"breadcrumpTitle" => "Produktauswahl"
"hasBreadcrump" => true
"breadcrumpExtraClasses" => ""
"breadcrumpImage" => "/assets/img/breadcrump/header-listing.jpg"
"breadcrumpUrls" => []
"hasMenu" => true
"hasContactMenu" => true
"hasFooterMenu" => true
"csfrInput" => "<input type="hidden" name="csfr" value="c0b40e93bb0de9147952cac18d1fda4c">"
"hasBreadcrumpLarge" => false
"innerBreadcrump" => ""
"activeSearchTherm" => ""
"shopData" => array:4 [
"productQuantity" => 1
"productPerPage" => 12
"productPage" => 1
"filterActive" => true
]
"products" => array:1 [
0 => array:42 [
"id" => "85"
"created" => "02.07.2020 11:32"
"createdBy" => "1"
"updated" => "19.09.2024 12:13"
"updatedBy" => "157"
"integrationId" => "01t0Y000005ZRarQAG"
"name" => "Dynamische Mischer"
"sku" => "17900"
"minQuantity" => "1"
"maxQuantity" => "10"
"price" => "61,90"
"rebate" => "0"
"description" => "<p>Dynamische Mischer für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental.</p>"
"shortDescription" => """
<p>Dynamische Mischer von Kettenbach Dental sind speziell für das Austragen von Abformmaterial aus der 380-ml-Kartusche von Kettenbach Dental entwickelt.</p>\n
<p><span style="text-decoration: underline;">Folgende Produkte sind in der 380-ml-Kartusche verfügbar: </span></p>\n
<ul>\n
<li>Panasil</li>\n
<li>Identium</li>\n
<li>Silginat</li>\n
</ul>
"""
"specification" => "17900 - Dynamische Mischer - 45 Stück, blau für 380-ml-Kartuschen"
"status" => "1"
"hArea" => "34"
"hArea_Dyn_Sort" => "Zubehör"
"hFamily" => "36"
"hFamily_Dyn_Sort" => "Mischkanülen"
"hProduct" => "37"
"hProduct_Dyn_Sort" => "Dynamische Mischer"
"AVariant" => null
"AVariant_Dyn_Sort" => null
"AColor" => null
"AColor_Dyn_Sort" => null
"ACharacteristic" => null
"ACharacteristic_Dyn_Sort" => null
"APackSize" => "106"
"APackSize_Dyn_Sort" => "45 Stück"
"ASort" => "105"
"ASort_Dyn_Sort" => "Dynamische Mischer"
"fTech" => array:1 [
0 => array:17 [
"id" => "49"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "b91e05e8-c99d-b864-cddc-cfc18dbe1b24"
"value" => "Dynamischer Mischer"
"type_id" => "0"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "68"
"sqllabel" => "Dynamischer Mischer"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fBrand" => array:3 [
0 => array:17 [
"id" => "25"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "ad6b4c53-6921-f354-3598-14f3275398e8"
"value" => "Silginat"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "87"
"sqllabel" => "Silginat"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
1 => array:17 [
"id" => "2"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "5af65172-c6a1-3114-ddeb-ca5e6b3178dd"
"value" => "Panasil"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "86"
"sqllabel" => "Panasil"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
2 => array:17 [
"id" => "20"
"created" => "2020-07-22 20:32:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:32:00"
"updated_by_id" => "1"
"integration_id" => "73aa07b9-9064-fd44-dde3-b0afc0a15d01"
"value" => "Identium"
"type_id" => "5"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Identium"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fUsage" => array:1 [
0 => array:17 [
"id" => "48"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "f698b0cb-aca3-6d44-ad4f-79ea38dc40fb"
"value" => "Mischkanülen"
"type_id" => "6"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "102"
"sqllabel" => "Mischkanülen"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fArea" => array:1 [
0 => array:17 [
"id" => "46"
"created" => "2020-07-22 20:33:00"
"created_by_id" => "1"
"updated" => "2020-07-22 20:33:00"
"updated_by_id" => "1"
"integration_id" => "adfe26f2-ab2b-4354-ad34-92f80abbb1db"
"value" => "Zubehör"
"type_id" => "4"
"fts_deu" => null
"fts_enu" => null
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "85"
"sqllabel" => "Zubehör"
"bcpath" => "productfilter"
"bcname" => "productfilter"
]
]
"fMaterial" => []
"fForm" => []
"fViscosity" => []
"sProducts" => array:3 [
0 => array:36 [
"id" => "48"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-08-17 12:08:00"
"updated_by_id" => "53"
"integration_id" => "01t0Y000005ZRa7QAG"
"name" => "Silginat "
"sku" => "14713"
"shortDescription" => "%3Cp%3ESilginat%20ist%20ein%20mittelflie%26szlig%3Bendes%20elastomeres%20A-Silikon%20und%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt.%3C%2Fp%3E"
"description" => "%3Cp%3EMit%20Silginat%20steht%20dem%20Anwender%20ein%20klassisches%20A-Silikon%20zur%20Verf%26uuml%3Bgung%2C%20das%20speziell%20f%26uuml%3Br%20Alginat-Anwendungen%20entwickelt%20wurde%20und%20gleich%20mehrfach%20punktet%3A%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ELAGERSTABIL%20UND%20MEHRFACH%20AUSGIESSBAR%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESituationsabformungen%20mit%20Silginat%20sind%20dauerhaft%20lagerstabil%20und%20k%26ouml%3Bnnen%20jederzeit%20auch%20mehrfach%20ausgegossen%20werden%3C%2Fli%3E%0A%3Cli%3EDas%20Erstellen%20von%20mehreren%20Abformungen%20einer%20Situation%20ist%20nicht%20mehr%20n%26ouml%3Btig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EHOHE%20PR%26Auml%3BZISION%20DURCH%20DIE%20VORTEILE%20EINES%20A-SILIKONS%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EAlginat%26auml%3Bhnliche%20Konsistenz%20und%20geringe%20Rei%26szlig%3Bfestigkeit%3C%2Fli%3E%0A%3Cli%3EThixotrop%20und%20dennoch%20flie%26szlig%3Bf%26auml%3Bhig%3C%2Fli%3E%0A%3Cli%3EDimensionsstabil%20mit%20hohem%20R%26uuml%3Bckstellverhalten%3C%2Fli%3E%0A%3Cli%3EScanf%26auml%3Bhig%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESTANDARDISIERTE%2C%20HYGIENISCHE%20PROZESSE%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ESaubere%2C%20einfache%20und%20sichere%20Anwendung%20mit%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20reproduzierbare%20Ergebnisse%20im%20Sinne%20des%20Qualit%26auml%3Btsmanagements%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMODERNE%20ABBINDECHARAKTERISTIK%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EKurze%20Mundverweildauer%20(90%20Sekunden)%20f%26uuml%3Br%20z%26uuml%3Bgige%20Arbeitsprozesse%3C%2Fli%3E%0A%3Cli%3EIn%20nur%20drei%20Minuten%20ist%20die%20Situationsabformung%20erstellt%3C%2Fli%3E%0A%3Cli%3EShore-H%26auml%3Brte%20A%2045%20f%26uuml%3Br%20einfaches%20Entformen%3C%2Fli%3E%0A%3C%2Ful%3E"
"specification" => "14713 - Silginat - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "97.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "18"
"h_product_id" => null
"a_variant_id" => "91"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "51"
"fts_deu" => """
Id: 48; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 17.08.2021 12:08; Aktualisiert vom: 53; Salesforce-ID: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"fts_enu" => """
Id: 48; Created: 02.07.2020 11:32; Created By: 1; Updated: 17.08.2021 12:08; Updated By: 53; Code: 01t0Y000005ZRa7QAG; Name: Silginat ; Artikelnummer: 14713; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 97.9; Rabatt in %: 0.00; Beschreibung: <p>Mit Silginat steht dem Anwender ein klassisches A-Silikon zur Verfügung, das speziell für Alginat-Anwendungen entwickelt wurde und gleich mehrfach punktet:</p>\n
<p> </p>\n
<p>LAGERSTABIL UND MEHRFACH AUSGIESSBAR</p>\n
<ul>\n
<li>Situationsabformungen mit Silginat sind dauerhaft lagerstabil und können jederzeit auch mehrfach ausgegossen werden</li>\n
<li>Das Erstellen von mehreren Abformungen einer Situation ist nicht mehr nötig</li>\n
</ul>\n
<p> </p>\n
<p>HOHE PRÄZISION DURCH DIE VORTEILE EINES A-SILIKONS</p>\n
<ul>\n
<li>Alginatähnliche Konsistenz und geringe Reißfestigkeit</li>\n
<li>Thixotrop und dennoch fließfähig</li>\n
<li>Dimensionsstabil mit hohem Rückstellverhalten</li>\n
<li>Scanfähig</li>\n
</ul>\n
<p> </p>\n
<p>STANDARDISIERTE, HYGIENISCHE PROZESSE</p>\n
<ul>\n
<li>Saubere, einfache und sichere Anwendung mit der 5:1 Großkartusche für reproduzierbare Ergebnisse im Sinne des Qualitätsmanagements</li>\n
</ul>\n
<p> </p>\n
<p>MODERNE ABBINDECHARAKTERISTIK</p>\n
<ul>\n
<li>Kurze Mundverweildauer (90 Sekunden) für zügige Arbeitsprozesse</li>\n
<li>In nur drei Minuten ist die Situationsabformung erstellt</li>\n
<li>Shore-Härte A 45 für einfaches Entformen</li>\n
</ul>; Kurzbeschreibung: <p>Silginat ist ein mittelfließendes elastomeres A-Silikon und speziell für Alginat-Anwendungen entwickelt.</p>; Spezifikation: 14713 - Silginat - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Silginat; Technik: ; Marke: Silginat; Anwendung: Situationsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: ; Verwandte Produkte: 17900 - Dynamische Mischer, 35910 - Sympress, 17753 - Multi Tray Quadrant; Produktvariante: Economy pack - 3 x 150 ml; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Silginat;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "224"
"sqllabel" => "14713 - Silginat "
"bcpath" => "product"
"bcname" => "product"
]
1 => array:36 [
"id" => "30"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2026-02-04 15:51:00"
"updated_by_id" => "9731"
"integration_id" => "01t0Y000005ZRaFQAW"
"name" => "Identium Heavy "
"sku" => "14725"
"shortDescription" => "%3Cp%3EIdentium%26nbsp%3BHeavy%20ist%20ein%20z%26auml%3Bhflie%26szlig%3Bendes%20Pr%26auml%3Bzisionsabformmaterial%20aus%20Vinylsiloxanether%2C%20das%20aufgrund%20seines%20optimalen%20Druckaufbaus%20in%20Kombination%20mit%20Identium%26nbsp%3BLight%20besonders%20gute%20Ergebnisse%20in%20der%20Doppelmischtechnik%20liefert.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EIdentium%20Heavy%3C%2Fli%3E%0A%3Cli%3EIdentium%20Heavy%20Fast%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EIdentium%20verbindet%20die%20Vorz%26uuml%3Bge%20zweier%20bew%26auml%3Bhrter%20Abformmaterialien%20(A-Silikon%20und%20Polyether)%20und%20das%20in%20perfekter%20Balance.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EIdentium%20Heavy%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EH%26Ouml%3BCHSTE%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EDas%20perfekte%20Anflie%26szlig%3Ben%20auch%20unter%20Restfeuchte%20erm%26ouml%3Bglicht%20eine%20sichere%20Erfassung%20der%20Pr%26auml%3Bparationsgrenze.%3C%2Fli%3E%0A%3Cli%3EDie%20kurze%20Mundverweildauer%20verspricht%20keine%20Deformation%20w%26auml%3Bhrend%20der%20Abbindephase.%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EMEHR%20KOMFORT%20F%26Uuml%3BR%20ANWENDER%20UND%20PATIENT%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3ELeichte%20Mundentnahme%20durch%20hohe%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EGeringe%20Bruchgefahr%20bei%20der%20Modellherstellung%3C%2Fli%3E%0A%3Cli%3EGeschmacks-%20und%20geruchsneutral%3C%2Fli%3E%0A%3Cli%3EKurze%20Mundverweildauer%3C%2Fli%3E%0A%3Cli%3EDeutlich%20weniger%20W%26uuml%3Brgereiz%20und%20Verwacklungen%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EZEITSPARENDE%20FAST-VARIANTE%3C%2Fp%3E%0A%3Cp%3EBereits%20nach%20insgesamt%203%20Minuten%2030%20Sekunden%20kann%20die%20Abformung%20aus%20dem%20Patientenmund%20entnommen%20werden.%3C%2Fp%3E"
"specification" => "14725 - Identium Heavy - Refill pack: 2 x 380 ml"
"stock" => "0"
"price" => "250"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "9"
"h_product_id" => "10"
"a_variant_id" => "27"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "10"
"a_sort_id" => "26"
"fts_deu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Salesforce-ID: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"fts_enu" => """
Id: 30; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 04.02.2026 15:51; Aktualisiert vom: 9731; Code: 01t0Y000005ZRaFQAW; Name: Identium Heavy ; Artikelnummer: 14725; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 250.00; Rabatt in %: 0.00; Beschreibung: <p>Identium verbindet die Vorzüge zweier bewährter Abformmaterialien (A-Silikon und Polyether) und das in perfekter Balance.</p>\n
<p> </p>\n
<h3>Identium Heavy</h3>\n
<p> </p>\n
<p>HÖCHSTE PRÄZISION</p>\n
<ul>\n
<li>Das perfekte Anfließen auch unter Restfeuchte ermöglicht eine sichere Erfassung der Präparationsgrenze.</li>\n
<li>Die kurze Mundverweildauer verspricht keine Deformation während der Abbindephase.</li>\n
</ul>\n
<p> </p>\n
<p>MEHR KOMFORT FÜR ANWENDER UND PATIENT</p>\n
<ul>\n
<li>Leichte Mundentnahme durch hohe Elastizität</li>\n
<li>Geringe Bruchgefahr bei der Modellherstellung</li>\n
<li>Geschmacks- und geruchsneutral</li>\n
<li>Kurze Mundverweildauer</li>\n
<li>Deutlich weniger Würgereiz und Verwacklungen</li>\n
</ul>\n
<p> </p>\n
<p>ZEITSPARENDE FAST-VARIANTE</p>\n
<p>Bereits nach insgesamt 3 Minuten 30 Sekunden kann die Abformung aus dem Patientenmund entnommen werden.</p>; Kurzbeschreibung: <p>Identium Heavy ist ein zähfließendes Präzisionsabformmaterial aus Vinylsiloxanether, das aufgrund seines optimalen Druckaufbaus in Kombination mit Identium Light besonders gute Ergebnisse in der Doppelmischtechnik liefert. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Identium Heavy</li>\n
<li>Identium Heavy Fast</li>\n
</ul>; Spezifikation: 14725 - Identium Heavy - Refill pack: 2 x 380 ml; Status: Aktiv; Bereich: Abformung; Produktfamilie: Identium; Produkt: Identium Heavy; Technik: Doppelmischabformung; Marke: Identium; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: Vinylsiloxanether; Viskosität: 380 ml Kartusche; Werkstoff: Heavy; Verwandte Produkte: 1370111 - Identium Light , 17900 - Dynamische Mischer, 14204 - Identium Adhesive; Produktvariante: Identium Heavy; Packungsgröße: Refill pack - 2 x 380 ml; Sortierung: Identium Heavy;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "225"
"sqllabel" => "14725 - Identium Heavy "
"bcpath" => "product"
"bcname" => "product"
]
2 => array:36 [
"id" => "7"
"created" => "2020-07-02 11:32:00"
"created_by_id" => "1"
"updated" => "2021-07-13 08:31:00"
"updated_by_id" => "47"
"integration_id" => "01t0Y000005ZRZtQAO"
"name" => "Panasil binetics Putty Fast "
"sku" => "14700"
"shortDescription" => "%3Cp%3EPanasil%20binetics%20Putty%20ist%20ein%20echtes%2C%20knetbares%20Putty%20auf%20A-Silikon-Basis%20in%20der%205%3A1%20Gro%26szlig%3Bkartusche%20f%26uuml%3Br%20die%20Pr%26auml%3Bzisionsabformung.%20Es%20ist%20in%20zwei%20Varianten%20erh%26auml%3Bltlich%3A%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Fast%3C%2Fli%3E%0A%3Cli%3EPanasil%20binetics%20Putty%20Soft%3C%2Fli%3E%0A%3C%2Ful%3E"
"description" => "%3Cp%3EPr%26auml%3Bzise%20ohne%20Kompromisse%2C%20daf%26uuml%3Br%20steht%20Panasil.%20Das%20Sortiment%20hat%20f%26uuml%3Br%20alle%20Abformtechniken%20und%20Indikationen%20das%20richtige%20Produkt.%3C%2Fp%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Ch3%3EPanasil%20binetics%20Putty%3C%2Fh3%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EEINFACHE%20VERARBEITUNG%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EGute%20Beschneidbarkeit%20dank%20angemessener%20H%26auml%3Brte%3C%2Fli%3E%0A%3Cli%3EEinfaches%20Austragen%20aus%20der%20komfortablen%205%3A1%20Kartusche%20mit%20allen%20g%26auml%3Bngigen%20Anmischger%26auml%3Bten%3C%2Fli%3E%0A%3Cli%3EGleichbleibende%20Qualit%26auml%3Bt%20durch%20exakte%2C%20reproduzierbare%20Dosierung%20aus%20der%20komfortablen%20Gro%26szlig%3Bkartusche%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3ESICHERHEIT%20DURCH%20PR%26Auml%3BZISION%3C%2Fp%3E%0A%3Cul%3E%0A%3Cli%3EHohe%20Viskosit%26auml%3Bt%20f%26uuml%3Br%20gen%26uuml%3Bgend%20Druckaufbau%3C%2Fli%3E%0A%3Cli%3ELeichte%20Mundentnahme%20aufgrund%20idealer%20Elastizit%26auml%3Bt%3C%2Fli%3E%0A%3Cli%3EDimensionsgetreue%20R%26uuml%3Bckstellung%3C%2Fli%3E%0A%3Cli%3EWenig%20Speichelfluss%20durch%20Geruchs-%20und%20Geschmacksneutralit%26auml%3Bt%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3E%26nbsp%3B%3C%2Fp%3E%0A%3Cp%3EIMMER%20DAS%20RICHTIGE%20PRODUKT%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Fast%20-%20kurze%20Mundverweildauer%20(Abbindeende%204%20min)%2C%20hohe%20Endh%26auml%3Brte%20(Shore-A%2063)%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Korrekturabformung%2C%20Folienabformung%3C%2Fp%3E%0A%3Cp%3Ebinetics%20Putty%20Soft%20-%20reduzierte%20Endh%26auml%3Brte%20(Shore-A%2056)%20f%26uuml%3Br%20eine%20noch%20leichtere%20Mundentnahme%20%3Cbr%20%2F%3E%3Cspan%20style%3D%22text-decoration%3A%20underline%3B%22%3Esehr%20empfehlenswert%20f%26uuml%3Br%3A%3C%2Fspan%3E%20Sandwichabformung%2C%20Doppelmischabformung%2C%20Funktionelle%20Randgestaltung%3C%2Fp%3E"
"specification" => "14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend"
"stock" => "0"
"price" => "130.9"
"rebate" => "0"
"maxQuantity" => "10"
"minQuantity" => "1"
"status_id" => "1"
"manufacturer_id" => null
"category_id" => null
"h_area_id" => "1"
"h_family_id" => "2"
"h_product_id" => "4"
"a_variant_id" => "8"
"a_color_id" => null
"a_characteristic_id" => null
"a_packsize_id" => "9"
"a_sort_id" => "7"
"fts_deu" => """
Id: 7; Erstellt: 02.07.2020 11:32; Erstellt vom: 1; Aktualisiert: 13.07.2021 08:31; Aktualisiert vom: 47; Salesforce-ID: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"fts_enu" => """
Id: 7; Created: 02.07.2020 11:32; Created By: 1; Updated: 13.07.2021 08:31; Updated By: 47; Code: 01t0Y000005ZRZtQAO; Name: Panasil binetics Putty Fast ; Artikelnummer: 14700; Mindestbestellmenge: 1; Maximalbestellmenge: 10; Preis in €: 130.9; Rabatt in %: 0.00; Beschreibung: <p>Präzise ohne Kompromisse, dafür steht Panasil. Das Sortiment hat für alle Abformtechniken und Indikationen das richtige Produkt.</p>\n
<p> </p>\n
<h3>Panasil binetics Putty</h3>\n
<p> </p>\n
<p>EINFACHE VERARBEITUNG</p>\n
<ul>\n
<li>Gute Beschneidbarkeit dank angemessener Härte</li>\n
<li>Einfaches Austragen aus der komfortablen 5:1 Kartusche mit allen gängigen Anmischgeräten</li>\n
<li>Gleichbleibende Qualität durch exakte, reproduzierbare Dosierung aus der komfortablen Großkartusche</li>\n
</ul>\n
<p> </p>\n
<p>SICHERHEIT DURCH PRÄZISION</p>\n
<ul>\n
<li>Hohe Viskosität für genügend Druckaufbau</li>\n
<li>Leichte Mundentnahme aufgrund idealer Elastizität</li>\n
<li>Dimensionsgetreue Rückstellung</li>\n
<li>Wenig Speichelfluss durch Geruchs- und Geschmacksneutralität</li>\n
</ul>\n
<p> </p>\n
<p>IMMER DAS RICHTIGE PRODUKT</p>\n
<p>binetics Putty Fast - kurze Mundverweildauer (Abbindeende 4 min), hohe Endhärte (Shore-A 63) <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Korrekturabformung, Folienabformung</p>\n
<p>binetics Putty Soft - reduzierte Endhärte (Shore-A 56) für eine noch leichtere Mundentnahme <br /><span style="text-decoration: underline;">sehr empfehlenswert für:</span> Sandwichabformung, Doppelmischabformung, Funktionelle Randgestaltung</p>; Kurzbeschreibung: <p>Panasil binetics Putty ist ein echtes, knetbares Putty auf A-Silikon-Basis in der 5:1 Großkartusche für die Präzisionsabformung. Es ist in zwei Varianten erhältlich:</p>\n
<ul>\n
<li>Panasil binetics Putty Fast</li>\n
<li>Panasil binetics Putty Soft</li>\n
</ul>; Spezifikation: 14700 - Panasil binetics Putty Fast - Intro pack: 1 x 380 ml, 10 Dynamische Mischer - schnellabbindend; Status: Aktiv; Bereich: Abformung; Produktfamilie: Panasil; Produkt: Panasil binetics Putty; Technik: Korrekturabformung; Marke: Panasil; Anwendung: Präzisionsabformung; Bereich: Abformung; Darreichungsform: A-Silikon; Viskosität: 380 ml Kartusche; Werkstoff: Putty; Verwandte Produkte: 14701 - Panasil binetics Putty Fast, 1340111 - Panasil initial contact X-Light , 1189211 - Panasil contact plus X-Light ; Produktvariante: binetics Putty Fast; Packungsgröße: Intro pack - 1 x 380 ml, 10 Dynamische Mischer; Sortierung: Panasil binetics Putty;
"""
"deleted" => "0"
"draft" => null
"oc_version" => "0"
"nmid" => "226"
"sqllabel" => "14700 - Panasil binetics Putty Fast "
"bcpath" => "product"
"bcname" => "product"
]
]
"tag" => []
"productShopImage" => array:1 [
0 => "/uploads/productShop/85/Dynamische_Mischer.png"
]
]
]
"areas" => array:5 [
0 => array:14 [
"id" => "1"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ff0e3eed-92b8-fdd4-0577-3a8b59471bcf"
"value" => "Abformung"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "19"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "e11ac170-3883-a404-6d32-4df70cd6aa51"
"value" => "Restauration"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
2 => array:14 [
"id" => "26"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "f1aadd2b-ddac-30b4-f1c9-d0052f533679"
"value" => "Weitere Produkte"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "34"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "20f28bfe-a408-0184-fda8-d76749e8612b"
"value" => "Zubehör"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "56"
"created" => "04.02.2026 15:53"
"createdBy" => "9731"
"updated" => "04.02.2026 15:54"
"updatedBy" => "9731"
"integrationId" => "11eb2712-9bdc-bab4-b1ad-fc905f04756a"
"value" => "Prävention"
"type" => "0"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"families" => array:19 [
0 => array:14 [
"id" => "2"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "13.11.2020 14:27"
"updatedBy" => "1"
"integrationId" => "d2cd5a6d-a7b5-d5b4-815e-685389bf857d"
"value" => "Panasil"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
1 => array:14 [
"id" => "9"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "29.06.2023 14:44"
"updatedBy" => "50"
"integrationId" => "0b8619d9-bedd-5794-a11a-2f4165b01b84"
"value" => "Identium"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
2 => array:14 [
"id" => "13"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "2c944f44-2c89-8e24-f9f3-731dccbad6ff"
"value" => "Futar"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Bissregistrierung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
3 => array:14 [
"id" => "18"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "f6581f74-ff81-4004-7115-f3e798eafa30"
"value" => "Silginat"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Situationsabformung | A-Silikon"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
4 => array:14 [
"id" => "20"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "c2ff14d0-0fe1-da04-c9c5-14d501847846"
"value" => "Visalys CemCore"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Befestigung & Stumpfaufbau"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
5 => array:14 [
"id" => "24"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:13"
"updatedBy" => "41"
"integrationId" => "3e438dd7-afd4-1f64-196c-47ea3384583b"
"value" => "Visalys Core"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Stumpfaufbau & Wurzelstiftbefestigung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13860"
]
6 => array:14 [
"id" => "25"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:16"
"updatedBy" => "50"
"integrationId" => "27cda8b5-aa83-a334-4916-f751220f95c8"
"value" => "Visalys Temp"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "Temporäre Kronen & Brücken"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13781"
]
7 => array:14 [
"id" => "27"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "a519591d-7128-1ad4-5d4a-3629d755bb98"
"value" => "Mucopren Soft"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Weichbleibende Unterfütterung"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
8 => array:14 [
"id" => "31"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "cce4db24-e19d-e854-edff-f02f4a2c3c91"
"value" => "Panasil lab Putty"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Vorwallmaterial (Labor)"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
9 => array:14 [
"id" => "32"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:02"
"updatedBy" => "50"
"integrationId" => "6595d1f2-910d-7c24-a9bf-c2afb8b22e8f"
"value" => "Orthoskavident C"
"type" => "1"
"assigntype" => "26"
"assigntype_Dyn_Sort" => "Weitere Produkte"
"subdescription" => "Touchierflüssigkeit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "13063"
]
10 => array:14 [
"id" => "35"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "777d9a88-b352-4d04-255b-49961bfae634"
"value" => "Adhesive / Primer"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
11 => array:14 [
"id" => "36"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "13f36f46-d8cc-2534-09a9-5954ac3ad591"
"value" => "Mischkanülen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => null
]
12 => array:14 [
"id" => "42"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:03"
"updatedBy" => "50"
"integrationId" => "8e545bd4-d148-82c4-9dba-e363a20fc482"
"value" => "Partielle Abformlöffel"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17750"
]
13 => array:14 [
"id" => "43"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 09:05"
"updatedBy" => "50"
"integrationId" => "4e826d6e-38a8-6074-29bd-085a79982c78"
"value" => "Dosierpistolen"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "17203"
]
14 => array:14 [
"id" => "44"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "11.02.2021 08:10"
"updatedBy" => "1"
"integrationId" => "5773fd7b-606d-9114-b924-7f1b66fec172"
"value" => "Sympress"
"type" => "1"
"assigntype" => "34"
"assigntype_Dyn_Sort" => "Zubehör"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "35910"
]
15 => array:14 [
"id" => "46"
"created" => "29.06.2023 14:45"
"createdBy" => "50"
"updated" => "29.06.2023 14:49"
"updatedBy" => "50"
"integrationId" => "8c3ad156-fe35-9124-158d-39984c1393c6"
"value" => "VSXE One"
"type" => "1"
"assigntype" => "1"
"assigntype_Dyn_Sort" => "Abformung"
"subdescription" => "Präzisionsabformung | Vinylsiloxanether"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
16 => array:14 [
"id" => "49"
"created" => "30.06.2023 07:30"
"createdBy" => "50"
"updated" => "14.09.2023 17:28"
"updatedBy" => "1"
"integrationId" => "2bc5f3ff-2049-8744-59ec-2e81f86488f7"
"value" => "Visalys Flow"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1503099"
]
17 => array:14 [
"id" => "55"
"created" => "14.09.2023 12:12"
"createdBy" => "1"
"updated" => "14.09.2023 16:30"
"updatedBy" => "1"
"integrationId" => "ce037230-6151-2d04-05e0-19c09d9430ba"
"value" => "Visalys Fill"
"type" => "1"
"assigntype" => "19"
"assigntype_Dyn_Sort" => "Restauration"
"subdescription" => "stopfbares Nano-Hybrid-Füllungskomposit"
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => "1501299"
]
18 => array:14 [
"id" => "57"
"created" => "04.02.2026 15:58"
"createdBy" => "9731"
"updated" => "04.02.2026 15:58"
"updatedBy" => "9731"
"integrationId" => "9e035b9c-8cf9-a144-1949-0c8ed01b8e5e"
"value" => "Profisil"
"type" => "1"
"assigntype" => "56"
"assigntype_Dyn_Sort" => "Prävention"
"subdescription" => null
"familytype" => "0"
"familytype_Dyn_Sort" => null
"sku" => ""
]
]
"brands" => array:27 [
0 => array:14 [
"id" => "3"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3e6d5b41-827c-13c4-2940-ba10e126f21e"
"value" => "Panasil Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "11101"
]
1 => array:14 [
"id" => "4"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "8c9b9ff2-fba2-00c4-a58b-abeab3d00fb6"
"value" => "Panasil binetics Putty"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14700"
]
2 => array:14 [
"id" => "5"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ce0fea9a-e942-4254-55c7-8ac0248a8c00"
"value" => "Panasil tray Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14704"
]
3 => array:14 [
"id" => "6"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "05bfe8ca-b14b-92a4-4df4-f77712e53ca1"
"value" => "Panasil monophase Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "14709"
]
4 => array:14 [
"id" => "7"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:40"
"updatedBy" => "1"
"integrationId" => "408cb8d0-0474-4784-c1e3-68a3e7300a90"
"value" => "Panasil initial contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1340111"
]
5 => array:14 [
"id" => "8"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:43"
"updatedBy" => "1"
"integrationId" => "3dc9886c-82b2-39f4-f5e4-d1375c9eee65"
"value" => "Panasil contact"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "2"
"familytype_Dyn_Sort" => "Panasil"
"sku" => "1178111"
]
6 => array:14 [
"id" => "10"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:44"
"updatedBy" => "1"
"integrationId" => "b0b0d6c3-dd90-81d4-0958-102ebd56df23"
"value" => "Identium Heavy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1472411"
]
7 => array:14 [
"id" => "11"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "ee4ea801-3c11-2dc4-3d7b-5a90184d170c"
"value" => "Identium Medium"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "14716"
]
8 => array:14 [
"id" => "12"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:45"
"updatedBy" => "1"
"integrationId" => "cac5bc64-9b41-4034-59b9-fe993f25312e"
"value" => "Identium Light"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "9"
"familytype_Dyn_Sort" => "Identium"
"sku" => "1370111"
]
9 => array:14 [
"id" => "14"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:46"
"updatedBy" => "1"
"integrationId" => "a3ca3c44-a846-7c84-19c6-2cb71f830671"
"value" => "Futar"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1191211"
]
10 => array:14 [
"id" => "15"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:47"
"updatedBy" => "1"
"integrationId" => "484c9edd-cc81-7c94-6d90-46c66e2be150"
"value" => "Futar D"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1193211"
]
11 => array:14 [
"id" => "17"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "06.08.2021 12:49"
"updatedBy" => "1"
"integrationId" => "8489a53d-1804-f594-79b5-70a199f8baf1"
"value" => "Futar D Slow"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1195111"
]
12 => array:14 [
"id" => "21"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "3cc32879-952c-0ab4-2df6-0c3c74a1ff4c"
"value" => "Visalys CemCore Starter pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13570"
]
13 => array:14 [
"id" => "22"
"created" => "22.07.2020 20:32"
"createdBy" => "1"
"updated" => "22.07.2020 20:32"
"updatedBy" => "1"
"integrationId" => "52058e72-116e-5724-293e-004900cf880c"
"value" => "Visalys CemCore Normal pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13572"
]
14 => array:14 [
"id" => "23"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "e2123659-9de3-b724-7128-12ddf9320e56"
"value" => "Visalys CemCore Try In Paste"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "20"
"familytype_Dyn_Sort" => "Visalys CemCore"
"sku" => "13592"
]
15 => array:14 [
"id" => "28"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "688d751f-11ab-5da4-ed45-c81755e3ea72"
"value" => "Mucopren Soft Basis Set"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "28105"
]
16 => array:14 [
"id" => "29"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "9139aa5a-03ec-b2e4-652e-2042465d591e"
"value" => "Mucopren Soft Normal Pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15687"
]
17 => array:14 [
"id" => "30"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "67168f80-9c7c-0ae4-add2-2e9623748be1"
"value" => "Mucopren Silicone Sealant"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "27"
"familytype_Dyn_Sort" => "Mucopren Soft"
"sku" => "15686"
]
18 => array:14 [
"id" => "37"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "57d3d5ec-ae9c-7d44-3937-0054193b5bf1"
"value" => "Dynamische Mischer"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17900"
]
19 => array:14 [
"id" => "38"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "0765248d-7fe0-6824-55d7-84b804f8e0bf"
"value" => "Mischkanülen"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17240"
]
20 => array:14 [
"id" => "39"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "6105fd5b-c968-cd94-396b-e63f9e9c2bd8"
"value" => "Intraoral tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17225"
]
21 => array:14 [
"id" => "40"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "22.07.2020 20:33"
"updatedBy" => "1"
"integrationId" => "2baf26d8-4ae9-c7a4-d5cd-27a7e1b8804e"
"value" => "Endo tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17224"
]
22 => array:14 [
"id" => "41"
"created" => "22.07.2020 20:33"
"createdBy" => "1"
"updated" => "01.11.2023 09:30"
"updatedBy" => "1"
"integrationId" => "206c3c22-3022-9e54-11a1-e73772330bdc"
"value" => "Syringe tips"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "36"
"familytype_Dyn_Sort" => "Mischkanülen"
"sku" => "17207"
]
23 => array:14 [
"id" => "45"
"created" => "15.08.2022 13:28"
"createdBy" => "53"
"updated" => "15.08.2022 13:28"
"updatedBy" => "53"
"integrationId" => "f7146da9-d8f8-2d64-51b6-db1772bf6ba5"
"value" => "Futar Easy"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "13"
"familytype_Dyn_Sort" => "Futar"
"sku" => "1192311"
]
24 => array:14 [
"id" => "47"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "5cc3512d-51d9-24a4-a52f-26ca80432158"
"value" => "VSXE One Intro "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14732"
]
25 => array:14 [
"id" => "48"
"created" => "30.06.2023 07:00"
"createdBy" => "50"
"updated" => "30.06.2023 07:01"
"updatedBy" => "50"
"integrationId" => "c5bb92c1-0d06-5464-85f3-cd7849aa46a7"
"value" => "VSXE One Refill Pack "
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "46"
"familytype_Dyn_Sort" => "VSXE One"
"sku" => "14733"
]
26 => array:14 [
"id" => "58"
"created" => "04.02.2026 16:02"
"createdBy" => "9731"
"updated" => "05.02.2026 07:40"
"updatedBy" => "9731"
"integrationId" => "b4f8a2a3-4e0b-0e84-3573-c5637798ec97"
"value" => "Combi pack"
"type" => "2"
"assigntype" => "0"
"assigntype_Dyn_Sort" => null
"subdescription" => null
"familytype" => "57"
"familytype_Dyn_Sort" => "Profisil"
"sku" => "14801"
]
]
"filters" => array:6 [
"Bereich" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_area"
"id" => 4
"name" => "Bereich"
"hasToggle" => false
"field" => "fArea"
"hasActive" => false
"hidden" => false
]
"elements" => array:6 [
0 => array:5 [
"id" => "1"
"type" => "4"
"value" => "Abformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "27"
"type" => "4"
"value" => "Restauration"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "37"
"type" => "4"
"value" => "Weitere Produkte"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "46"
"type" => "4"
"value" => "Zubehör"
"active" => false
"hidden" => false
]
4 => array:5 [
"id" => "63"
"type" => "4"
"value" => "Füllungskomposite "
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "65"
"type" => "4"
"value" => "Unterfütterungs-Material"
"active" => false
"hidden" => true
]
]
]
"Marke" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_brand"
"id" => 5
"name" => "Marke"
"hasToggle" => true
"field" => "fBrand"
"hasActive" => true
"hidden" => false
]
"elements" => array:12 [
0 => array:5 [
"id" => "2"
"type" => "5"
"value" => "Panasil"
"active" => false
"hidden" => false
]
1 => array:5 [
"id" => "20"
"type" => "5"
"value" => "Identium"
"active" => true
"hidden" => false
]
2 => array:5 [
"id" => "23"
"type" => "5"
"value" => "Futar"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "25"
"type" => "5"
"value" => "Silginat"
"active" => true
"hidden" => false
]
4 => array:5 [
"id" => "28"
"type" => "5"
"value" => "Visalys CemCore"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "32"
"type" => "5"
"value" => "Visalys Core"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "35"
"type" => "5"
"value" => "Visalys Temp"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "38"
"type" => "5"
"value" => "Mucopren Soft"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "41"
"type" => "5"
"value" => "Orthoskavident C"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "58"
"type" => "5"
"value" => "VSXE One"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "60"
"type" => "5"
"value" => "Visalys Fill "
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "61"
"type" => "5"
"value" => "Visalys Flow"
"active" => false
"hidden" => true
]
]
]
"Anwendung" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_usage"
"id" => 6
"name" => "Anwendung"
"hasToggle" => true
"field" => "fUsage"
"hasActive" => false
"hidden" => false
]
"elements" => array:18 [
0 => array:5 [
"id" => "3"
"type" => "6"
"value" => "Präzisionsabformung"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "24"
"type" => "6"
"value" => "Bissregistrierung"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "26"
"type" => "6"
"value" => "Situationsabformung"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "29"
"type" => "6"
"value" => "Befestigung"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "30"
"type" => "6"
"value" => "Stumpfaufbau"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "33"
"type" => "6"
"value" => "Wurzelstiftbefestigung"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "36"
"type" => "6"
"value" => "Temporäres Kronen- & Brückenmaterial"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "39"
"type" => "6"
"value" => "Weichbleibende Unterfütterung"
"active" => false
"hidden" => true
]
8 => array:5 [
"id" => "40"
"type" => "6"
"value" => "Vorwallmaterial (Labor)"
"active" => false
"hidden" => true
]
9 => array:5 [
"id" => "42"
"type" => "6"
"value" => "Touchierflüssigkeit"
"active" => false
"hidden" => true
]
10 => array:5 [
"id" => "44"
"type" => "6"
"value" => "Händedesinfektion"
"active" => false
"hidden" => true
]
11 => array:5 [
"id" => "47"
"type" => "6"
"value" => "Adhesive / Primer"
"active" => false
"hidden" => true
]
12 => array:5 [
"id" => "48"
"type" => "6"
"value" => "Mischkanülen"
"active" => false
"hidden" => false
]
13 => array:5 [
"id" => "54"
"type" => "6"
"value" => "Partielle Abformlöffel"
"active" => false
"hidden" => true
]
14 => array:5 [
"id" => "55"
"type" => "6"
"value" => "Dosierpistolen"
"active" => false
"hidden" => true
]
15 => array:5 [
"id" => "56"
"type" => "6"
"value" => "Sympress"
"active" => false
"hidden" => true
]
16 => array:5 [
"id" => "59"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
17 => array:5 [
"id" => "64"
"type" => "6"
"value" => "Monophasenabformung "
"active" => false
"hidden" => true
]
]
]
"Werkstoff" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_material"
"id" => 3
"name" => "Werkstoff"
"hasToggle" => true
"field" => "fMaterial"
"hasActive" => false
"hidden" => true
]
"elements" => array:3 [
0 => array:5 [
"id" => "5"
"type" => "3"
"value" => "A-Silikon"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "21"
"type" => "3"
"value" => "Vinylsiloxanether"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "66"
"type" => "3"
"value" => "Nano-Hybrid-Füllungskomposit"
"active" => false
"hidden" => true
]
]
]
"Viskosität" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_viscosity"
"id" => 2
"name" => "Viskosität"
"hasToggle" => true
"field" => "fViscosity"
"hasActive" => false
"hidden" => true
]
"elements" => array:6 [
0 => array:5 [
"id" => "6"
"type" => "2"
"value" => "Putty"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "12"
"type" => "2"
"value" => "Heavy"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "16"
"type" => "2"
"value" => "Medium"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "19"
"type" => "2"
"value" => "Light"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "68"
"type" => "2"
"value" => "fließfähig"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "69"
"type" => "2"
"value" => "stopfbar"
"active" => false
"hidden" => true
]
]
]
"Darreichungsform" => array:2 [
"config" => array:7 [
"table" => "icrm_nm_product_filter_form"
"id" => 1
"name" => "Darreichungsform"
"hasToggle" => true
"field" => "fForm"
"hasActive" => false
"hidden" => true
]
"elements" => array:8 [
0 => array:5 [
"id" => "7"
"type" => "1"
"value" => "Dose"
"active" => false
"hidden" => true
]
1 => array:5 [
"id" => "11"
"type" => "1"
"value" => "380 ml Kartusche"
"active" => false
"hidden" => true
]
2 => array:5 [
"id" => "17"
"type" => "1"
"value" => "50 ml Kartusche"
"active" => false
"hidden" => true
]
3 => array:5 [
"id" => "22"
"type" => "1"
"value" => "Flasche"
"active" => false
"hidden" => true
]
4 => array:5 [
"id" => "31"
"type" => "1"
"value" => "Spritze"
"active" => false
"hidden" => true
]
5 => array:5 [
"id" => "34"
"type" => "1"
"value" => "25 ml Kartusche"
"active" => false
"hidden" => true
]
6 => array:5 [
"id" => "45"
"type" => "1"
"value" => "Kanister"
"active" => false
"hidden" => true
]
7 => array:5 [
"id" => "67"
"type" => "1"
"value" => "Caps"
"active" => false
"hidden" => true
]
]
]
]
"pageNation" => array:13 [
"quantity" => 1
"displayQuantity" => 12
"currentQuantity" => -11
"displayStart" => 1
"displayEnd" => 1
"pages" => 1.0
"current" => 1
"left" => []
"right" => []
"minLeft" => 0
"minRight" => 1
"last" => false
"first" => false
]
"activeArea" => null
"activeFamily" => null
"activeBrand" => null
"query" => "marke=20%2C25&t=12"
]
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/base/Router/Router.php
) {
$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;
}
}
if ($this->activeRoute->file !== null && file_exists($this->activeRoute->file)) {
// change the dir, just as we have a normal request
chdir(dirname($this->activeRoute->file));
include_once $this->activeRoute->file;
return true;
}
return false;
}
private function buildMatchExpression($match, $all = false)
{
if (empty($match) || $match == null) {
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/application.class.php
$this->_initBlade();
$this->_initAdminConfigSettings();
$this->bootstrapper->bootstrap();
$_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 (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 refreshLogStore()
{
if ($this->isGuestUsageActive() && \SucUser::ID() === null) {
$dataDir = get_include_path() . "/logs/" . "0";
} else {
$dataDir = get_include_path() . "/logs/" . \SucUser::ID();
}
$logStore = \SucSleekDB::store('Syslog', $dataDir);
$logStore->deleteStore();
}
private function isGuestUsageActive()
{
return isset($GLOBALS['ALLOW_GUEST_USAGE']) && $GLOBALS['ALLOW_GUEST_USAGE'] == TRUE;
/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/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/shop-kettenbach-dental.sucurema.de/httpdocs/index.php
<?php
//$page_title = $GLOBALS["APP_TITLE"] . "";
//if ($_SERVER['REMOTE_ADDR'] != "5.9.183.103") {
// include_once "uc.php";
// die();
//}
if ( !isset($START_LANG) ) {
$START_LANG = "DEU";
}
#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
"/var/www/vhosts/shop-kettenbach-dental.sucurema.de/httpdocs/core/application/auth/auth_header.php"