Blame view

libraries/nextend2/nextend/library/applications/system/backend/views/font/topbar.phtml 846 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php

$this->widget->init('topbar', array(
    "actions" => array(
        N2Html::tag('a', array(
            'href'  => '#',
            'id'    => 'n2-font-editor-cancel',
            'class' => 'n2-button n2-button-normal n2-button-l n2-radius-s n2-button-red n2-h4 n2-b n2-uc'
        ), n2_('Cancel')),
        N2Html::tag('a', array(
            'href'  => '#',
            'id'    => 'n2-font-editor-set-as-linked',
            'class' => 'n2-button n2-button-normal n2-button-l n2-radius-s n2-button-blue n2-h5 n2-b n2-uc',
        ), n2_('Apply as linked')),
        N2Html::tag('a', array(
            'href'  => '#',
            'id'    => 'n2-font-editor-save',
            'class' => 'n2-button n2-button-normal n2-button-l n2-radius-s n2-button-green n2-h4 n2-b n2-uc',
        ), n2_('Apply'))
    ),
    'fixTo'   => false
));