function __construct( $row )
 {
     parent::__construct( $row );
     
     $condition = array(
         'id' => $this->attribute('taxonomy_category_id'),
     );
     $this->taxonomyCategory = TaxonomyCategory::fetchObject( TaxonomyCategory::definition(), null, $condition );    
 }
    function __construct( $row )
    {
        parent::__construct( $row );
        $this->configurations = ChannelBlockConfiguration::getConfigurationsByBlock( $this->attribute("id") );

        $templateObject = ChannelTemplate::getTemplateById( $this->attribute("template_id") );
        if( $templateObject )
        {
            $this->template = $templateObject->attribute("template_web");
            if( ContextTool::instance()->isMobile() && $templateObject->attribute("template_mobile") )
            {
                $this->template = $templateObject->attribute("template_mobile");
            }
        }
    }
 /**
  * @param array $row
  */
 function __construct( $row = array() )
 {
     parent::__construct( $row );
 }
 function __construct( $row )
 {
     parent::__construct( $row );
     $this->buildFeature();
 }
 function __construct( $row )
 {
     parent::__construct( $row );
 }
 function __construct( $row )
 {
     parent::__construct( $row );
     $this->initLocalizedApplication();
     $this->permissionHandler = PermissionHandlerFactory::create($this, $this->applicationObject);
 }
    function __construct( $row )
    {
        parent::__construct( $row );

        $this->initPublisherFolderTranslation();
    }
 function __construct( $row )
 {
     parent::__construct( $row );
     $this->buildApplication();
 }