__construct() public method

Initialize the object
public __construct ( ModuleModel $objModule, string $strColumn = 'main' )
$objModule ModuleModel
$strColumn string
 public function __construct($objModule, $strColumn)
 {
     parent::__construct($objModule, $strColumn);
     foreach ($this->getSerializedProperties() as $k => $name) {
         $force = true;
         if (is_bool($name)) {
             $force = $name;
             $name = $k;
         }
         if (array_key_exists($name, $this->arrData)) {
             $this->arrData[$name] = deserialize($this->arrData[$name], $force);
         }
     }
 }