/**
 * @since > Mon Oct 08 2018
 * @author Kasper Hansen - Klean
 * 
 * * Modified ----
 * @since Mon Oct 08 2018
 * @author Charles Gouldmann - Klean
 */

// Core imports
import { Component, OnInit, Input } from '@angular/core'

// Services
import { HelperService } from '@k-services/svc.helper'


@Component({
    moduleId: module.id+ '',
    selector: 'block-image-text-and-button',
    templateUrl: './tpl.image-text-and-button.pug',
    styleUrls: ['sty.image-text-and-button.scss'],
    host: {'style': 'display: flex; height: 100%;'}
})

export class BlockImageTextandButtonComponent implements OnInit {

    // ---- Variables ---- \\
    @Input('block') block
    server: string


    constructor(public _helper: HelperService) { }



    // ---- Lifecycle hooks ---- \\
    ngOnInit() {
        this.server = this._helper.server
    }



    // ---- Functions ---- \\
    // * Magic * //
}