Asset::__construct PHP Method

__construct() public method

public __construct ( )
        public function __construct()
        {
        }

Usage Example

 function __construct($file_path)
 {
     # create and store data required for this asset
     parent::__construct($file_path);
     # create and store additional data required for this asset
     $this->set_extended_data($file_path);
 }
All Usage Examples Of Asset::__construct