/**
  * @param array $objects needs at least an instance of the PageBasicLayout.
  * @param unknown $cfgString The configuration string.
  */
 public function __construct(array $objects, $cfgString)
 {
     $configuration = DecodeConfiguration::decode($cfgString);
     // Apply the personal default configuration here.
     // The base will apply the base default parameters for you.
     $configuration = array_merge($this->defaultConfiguration, $configuration);
     parent::__construct($objects, $configuration);
 }
 /**
  * @param array $obj dummy, not needed.
  * @param unknown $cfgString The configuration string.
  */
 public function __construct(array $obj, $cfgString)
 {
     $configuration = DecodeConfiguration::decode($cfgString);
     $this->configurationIn = $configuration;
 }