当前位置: 首页>>代码示例>>PHP>>正文


PHP BootstrapAsset::className方法代码示例

本文整理汇总了PHP中yii\bootstrap\BootstrapAsset::className方法的典型用法代码示例。如果您正苦于以下问题:PHP BootstrapAsset::className方法的具体用法?PHP BootstrapAsset::className怎么用?PHP BootstrapAsset::className使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\bootstrap\BootstrapAsset的用法示例。


在下文中一共展示了BootstrapAsset::className方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: url

<?php

use backend\assets\AppAsset;
use yii\bootstrap\BootstrapAsset;
AppAsset::register($this);
$this->registerCssFile('/css/bootstrap.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/css/responsive.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/css/camera.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/css/style.css', ['depends' => BootstrapAsset::className()]);
//$this->registerCssFile('http://fonts.googleapis.com/css?family=Open+Sans:400,600,700', ['depends' => BootstrapAsset::className()]);
//$this->registerCssFile('http://fonts.googleapis.com/css?family=Kaushan+Script:400', ['depends' => BootstrapAsset::className()]);
$this->registerJsFile('/js/jquery.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/jquery.easing.1.3.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/camera.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/jquery.ui.totop.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/jquery.mobile.customized.min.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/bootstrap.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/custom/index.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/js/superfish.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/js/custom/header.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/js/forms.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/js/jquery.cookie.js', ['depends' => AppAsset::className()]);
?>

<style>
    @font-face {
        font-family: kaushan; /* Гарнитура шрифта */
        src: url('/fonts/kaushan.ttf'); /* Путь к файлу со шрифтом */
    }
    .logo {
         font-family: kaushan!important;
开发者ID:kotmonstr,项目名称:full-shop,代码行数:31,代码来源:_pre_header.php

示例2:

<?php

use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets;
$this->registerAssetBundle(\yii\web\YiiAsset::className(), \yii\web\View::POS_HEAD);
$this->registerAssetBundle(\yii\bootstrap\BootstrapAsset::className(), \yii\web\View::POS_HEAD);
$this->registerAssetBundle(\app\assets\AppAsset::className(), \yii\web\View::POS_HEAD);
$this->beginPage();
?>
<!DOCTYPE html>
<html lang="<?php 
echo Yii::$app->language;
?>
">
<head>
    <meta charset="<?php 
echo Yii::$app->charset;
?>
"/>
    <link rel="icon" type="image/png" href="/img/fav.png" />
    <title><?php 
echo Html::encode($this->title);
?>
</title>
    <?php 
$this->head();
?>
    <?php 
echo Html::csrfMetaTags();
?>
开发者ID:tsyrya,项目名称:mybriop,代码行数:31,代码来源:registraciya.php

示例3:

<?php

use backend\assets\AppAsset;
use yii\bootstrap\BootstrapAsset;
AppAsset::register($this);
$this->registerCssFile('/matis/lib/bootstrap/css/bootstrap.min.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/matis/lib/font-awesome/css/font-awesome.min.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/matis/css/main.min.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('/matis/lib/metismenu/metisMenu.min.css', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('http://fonts.googleapis.com/css?family=Open+Sans:400,600,700', ['depends' => BootstrapAsset::className()]);
$this->registerCssFile('http://fonts.googleapis.com/css?family=Kaushan+Script:400', ['depends' => BootstrapAsset::className()]);
//$this->registerJsFile('/js/last/jquery.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/matis/lib/jquery/jquery.min.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/matis/lib/switch/js/bootstrap-switch.min.js', ['depends' => AppAsset::className()]);
//$this->registerJsFile('/matis/lib/bootstrap/js/bootstrap.min.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/matis/lib/modernizr/modernizr.min.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/matis/lib/metismenu/metisMenu.min.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/youtube.js', ['depends' => AppAsset::className()]);
$this->registerJsFile('/js/custom/flash.js', ['depends' => AppAsset::className()]);
$this->registerCssFile('/switch/bootstrap-switch.min.css', ['depends' => BootstrapAsset::className()]);
$this->registerJsFile('/switch/bootstrap-switch.min.js', ['depends' => AppAsset::className()]);
开发者ID:kotmonstr,项目名称:kotmonstr,代码行数:21,代码来源:_pre_header.php

示例4:

        <?php 
    echo Html::csrfMetaTags();
    ?>
        <title><?php 
    echo Html::encode($this->title);
    ?>
</title>
        <?php 
    $this->head();
    ?>
    </head>
    <body>
    <?php 
    $this->beginBody();
    $this->registerCssFile("/css/layout-main.css", ['depends' => [BootstrapAsset::className()]], 'css-print-theme');
    ?>

    <div class="wrap">
        <?php 
    NavBar::begin(['brandLabel' => Html::img('/assets/images/logo-blanco.png', ['alt' => Yii::$app->name, 'style' => 'max-height:100%;']), 'brandUrl' => Yii::$app->homeUrl, 'options' => ['class' => 'navbar-inverse navbar-fixed-top']]);
    $menuItems = [['label' => 'Home', 'url' => ['/site/index']], $menuItems[] = ['label' => 'About Us', 'url' => ['/site/about']]];
    if (Yii::$app->user->isGuest) {
        $menuItems[] = ['label' => 'Signup', 'url' => ['/site/signup']];
        $menuItems[] = ['label' => 'Login', 'url' => ['/site/login']];
    } else {
        $menuItems[] = ['label' => Yii::t('app', Yii::t('app', "Change your address!")), 'url' => ['/site/changedirection']];
        $menuItems[] = ['label' => 'Logout (' . Yii::$app->user->identity->username . ')', 'url' => ['/site/logout'], 'linkOptions' => ['data-method' => 'post']];
    }
    echo Nav::widget(['options' => ['class' => 'navbar-nav navbar-right'], 'items' => $menuItems]);
    NavBar::end();
开发者ID:no7kpo,项目名称:denm,代码行数:30,代码来源:main.php

示例5: init

 public function init()
 {
     parent::init();
     $this->sourcePath = __DIR__ . DIRECTORY_SEPARATOR . 'source';
     $this->depends[] = WidgetGeneratorAsset::className();
     $this->depends[] = BootstrapAsset::className();
 }
开发者ID:novokshonovev,项目名称:alerts,代码行数:7,代码来源:AlertsBlockAsset.php

示例6: actionIndex

 /**
  * @return string
  */
 public function actionIndex()
 {
     $model = new ApplicantForm();
     if ($model->load(Yii::$app->request->post()) && $model->validate()) {
         $fileName = time() . '.pdf';
         $filePath = Yii::getAlias('@webroot/files/' . time() . '.pdf');
         $this->layout = 'pdf';
         $this->view->params['css'] = [file_get_contents(Yii::getAlias('@webroot/css/pdf.css'))];
         $html = $this->render('pdf', ['model' => $model]);
         $pdf = new \DOMPDF();
         $pdf->set_base_path(Yii::$app->assetManager->getBundle(BootstrapAsset::className())->basePath . '/css');
         $pdf->load_html($html);
         $pdf->render();
         $output = $pdf->output();
         file_put_contents($filePath, $output);
         Yii::$app->session->setFlash('reportGenerated');
         Yii::$app->session->setFlash('reportURL', Url::to(['files/' . $fileName]));
         return $this->refresh();
     }
     return $this->render('index', ['model' => $model]);
 }
开发者ID:hauntd,项目名称:form-to-pdf,代码行数:24,代码来源:SiteController.php

示例7: init

 public function init()
 {
     if ($this->useNativeBootstrap == true) {
         \Yii::info('Registering a bootstrap assets', __METHOD__);
         $this->view->registerAssetBundle(BootstrapAsset::className(), View::POS_HEAD);
         $this->view->registerAssetBundle(BootstrapPluginAsset::className(), View::POS_HEAD);
     }
     $this->view->registerAssetBundle(AssetBundle::className(), View::POS_BEGIN);
     $this->options['id'] = $this->id;
     if (!empty($this->value) && !isset($this->sliderOptions['value'])) {
         $this->sliderOptions['value'] = $this->value;
     }
     if (strtolower($this->mode) === 'js') {
         $this->view->registerJs(sprintf('var slider%1$s = window.slider%1$s = new Slider(\'#%2$s\',%3$s);', Inflector::id2camel($this->id), $this->id, Json::encode($this->sliderOptions)), View::POS_END);
     } elseif (strtolower($this->mode) === 'data') {
         $data = ['provide' => 'slider'];
         foreach ($this->sliderOptions as $k => $v) {
             $data[sprintf('slider-%s', $k)] = $v;
         }
         $this->options['data'] = $data;
     } else {
         throw new InvalidParamException('A \'mode\' must be set to \'data\' or \'js\'!');
     }
 }
开发者ID:muvo,项目名称:yii2-slider,代码行数:24,代码来源:Widget.php

示例8: JsExpression

<?php

use app\models\Transport;
use yii\bootstrap\BootstrapAsset;
use yii\helpers\Html;
use yii\helpers\Url;
use yii\jui\AutoComplete;
use yii\jui\DatePicker;
use yii\web\JsExpression;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\models\Transport */
/* @var $form yii\widgets\ActiveForm */
$this->registerCssFile(Yii::getAlias('@web') . '/css/transport.css', ['depends' => [BootstrapAsset::className()]]);
$this->registerJsFile(Yii::getAlias('@web') . '/js/transport.js', ['depends' => [\yii\web\JqueryAsset::className()]]);
?>

<div class="transport-form">

    <?php 
$form = ActiveForm::begin();
?>
    <h4><?php 
echo Yii::t('app', 'Route');
?>
</h4>
    <?php 
echo $form->field($model, 'charge_city_id')->widget(AutoComplete::className(), ['clientOptions' => ['source' => Url::to(['site/autocomplete']), 'autoFill' => true, 'minLength' => '3', 'select' => new JsExpression("function(event, ui) {\n                                         this.value = ui.item.label;\n                                         \$('#city_input1').val(ui.item.value);\n                                         return false;\n                                }")], 'options' => ['id' => 'charge_city', 'class' => 'form-control', 'placeholder' => Yii::t('app', 'Start typing the name')]]);
?>
    <?php 
echo $form->field($model, 'charge_city_id')->hiddenInput(['id' => 'city_input1'])->label(false);
开发者ID:Shumer596,项目名称:site.loc,代码行数:31,代码来源:_form.php

示例9:

<?php

/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\ContactForm */
// use yii\helpers\Html;
// use yii\bootstrap\ActiveForm;
// use yii\captcha\Captcha;
use yii\helpers\Url;
use yii\bootstrap\BootstrapAsset;
$this->registerCssFile("/statics/style/all-18bb1055.css", [BootstrapAsset::className()]);
$this->registerCssFile("/statics/style/family=Lato&subset=latin,latin-ext.css", [BootstrapAsset::className()]);
$this->registerCssFile("/statics/style/family.css", [BootstrapAsset::className()]);
$this->title = '象记';
$this->params['breadcrumbs'][] = $this->title;
?>
 <div id="main" role="main">
      <nav>
<a href="/">          <img width="200" class="logo" src="/statics/images/oozou-5a43422c.gif" />
</a>        <h1 class='blog-title'>Welcome to the Oozou Blog</h1>
        <p>Edited by the marvellous people of <a href="http://oozou.com">Oozou</a></p>
      </nav>
        <div class="article-summary">
    <h4><a href="an-intro-to-otp-in-elixir.html">Towards a More Maintainable CSS</a></h4>
    <p>Or, what I learned from building our new Oozou website.</p>
    <div class="article-info">
      <img width="30" src="/statics/images/Thai-1fcc6e94.png" />
      By <span class="author">Thai Pangsakulyanont</span> - <span>March  3, 2015</span>
      <span class="tags"><a href="an-intro-to-otp-in-elixir.html">css</a></span>
    </div>
  </div>
开发者ID:aaroncnhk,项目名称:design,代码行数:31,代码来源:blog.php

示例10:

<?php

//классы стилей добавлять в frontend/web/css/our-cars.css
//$accountModel->name Название аккаунта
//$accountModel->phone телефон
//$accountModel->url  - ссылка на сайт
//$accountModel->address - адрес салона
//$accountModel->balance - баланс
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\ListView;
use yii\web\View;
$this->registerCssFile('/css/ourCars.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()], 'position' => View::POS_END]);
$Punycode = new \idna_convert(array('idn_version' => 2008));
$siteUrl = parse_url($accountModel->url);
if (isset($siteUrl['host'])) {
    $siteUrl['host'] = $Punycode->decode($siteUrl['host']);
    $siteUrl = Html::encode($siteUrl['scheme'] . '://' . $siteUrl['host']);
} else {
    $siteUrl = Html::encode($accountModel->url);
}
?>

<div class="container system-our-cars">
    <div class="row" style="margin-bottom:20px;">
        <div class="col-xs-12">
            <?php 
echo $this->render('_breadscrumb2', ['model' => $accountModel]);
?>
        </div>
    </div>
开发者ID:HejVkt,项目名称:auto.only3.ru,代码行数:31,代码来源:ourCars.php

示例11: array

//$model->w_driver; - с водитем (Y-да, N-нет, empty);
//$model->account->name Название аккаунта
//$model->account->phone телефон
//$model->account->url  - ссылка на сайт
//$model->account->address - адрес салона
//$model->account->balance - баланс
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\MaskedInput;
use yii\widgets\DetailView;
use app\components\KirovCalendarClass\KirovCalendarClass;
use app\modules\profile\models\Rentact;
use app\modules\profile\models\Busy;
use yii\widgets\ActiveForm;
use yii\widgets\Pjax;
$this->registerCssFile('/css/reserve-a-car.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()]], 'css-reserve-a-car-theme');
$this->registerJsFile('/js/reserve-a-car.js', ['depends' => [\yii\web\JqueryAsset::className()]]);
$this->registerCssFile('/css/magnific.css');
$this->registerJsFile('/js/magnific.js', ['depends' => [\yii\web\JqueryAsset::className()]]);
$allday = array();
$actives = array();
$rentact = Rentact::find()->where(['system_id' => $model->id])->all();
foreach ($rentact as $itm) {
    $allday[] = $itm->day;
}
$beetween = array();
$cur_m_n = date('n');
$cur_m_n = intval($cur_m_n);
// текущий месяц
$cur_y_n = date('Y');
$cur_y_n = intval($cur_y_n);
开发者ID:HejVkt,项目名称:auto.only3.ru,代码行数:31,代码来源:reserveCar2.php

示例12: array_merge

<?php

require_once '../components/MainView.php';
require_once '../models/Languages.php';
use app\components\MainView;
use app\models\Languages;
$params = array_merge(require __DIR__ . '/params.php', require __DIR__ . '/params-local.php');
$config = ['id' => 'basic', 'language' => 'en-US', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'defaultRoute' => 'site/login', 'aliases' => ['@file_save_dir' => '@app/web/files/', '@file_view_url' => '/files/', '@beacon_save_dir' => '@app/web/beacon_images/', '@beacon_view_url' => '/beacon_images', '@backend_beacon_view_dir' => '@app/web/beacon_images', '@frontend_beacon_view_dir' => '@app/web/beacon_images'], 'components' => ['cache' => ['class' => 'yii\\caching\\FileCache'], 'view' => ['class' => 'app\\components\\MainView'], 'user' => ['identityClass' => 'app\\models\\Users', 'enableAutoLogin' => true], 'assetManager' => ['bundles' => [\yii\web\JqueryAsset::className() => ['js' => ["http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js", "http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"], 'jsOptions' => ['position' => MainView::POS_HEAD]], \yii\bootstrap\BootstrapAsset::className() => ['baseUrl' => '@web', 'basePath' => '@webroot', 'css' => ['css/bootstrap.min.css']], \yii\bootstrap\BootstrapPluginAsset::className() => ['js' => ['https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js']]], 'appendTimestamp' => true], 'errorHandler' => ['errorAction' => 'site/error'], 'urlManager' => ['enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => ['<controller:\\w+>/<id:\\d+>' => '<controller>/view', '<controller:\\w+>/<action:\\w+>/<id:\\d+>' => '<controller>/<action>', '<controller:\\w+>/<action:\\w+>' => '<controller>/<action>']], 'authManager' => ['class' => yii\rbac\DbManager::className(), 'cache' => 'cache', 'defaultRoles' => ['super_admin', 'admin', 'user', 'promo_user']], 'apcCache' => ['class' => yii\caching\MemCache::className()], 'mailer' => ['class' => '\\zyx\\phpmailer\\Mailer', 'viewPath' => '@app/mail', 'useFileTransport' => false, 'messageConfig' => ['from' => ['noreply@beacons.com' => 'Beacon CMS']]], 'log' => ['traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [['class' => 'yii\\log\\FileTarget', 'levels' => ['error', 'warning']]]], 'session' => ['class' => 'yii\\web\\DbSession'], 'i18n' => ['translations' => ['*' => ['class' => 'yii\\i18n\\DbMessageSource', 'sourceLanguage' => 'en-US', 'forceTranslation' => true]]], 'languagepicker' => ['class' => '\\lajax\\languagepicker\\widgets\\LanguagePicker', 'languages' => function () {
    return Languages::getLanguageNames(true);
}]], 'params' => $params];
return $config;
开发者ID:DezMonT765,项目名称:beacon-cms,代码行数:11,代码来源:main.php

示例13:

<?php

use yii\helpers\Url;
use yii\bootstrap\BootstrapAsset;
/* @var $this yii\web\View */
$this->registerCssFile("/statics/style/style-894e3466.css", [BootstrapAsset::className()]);
$this->title = '象记首页';
?>
<header class="jumbotron jumbotron-m-index">

  <div class="jumbotron--background">
  </div>

  <div class="jumbotron--content introduction">
    <h1 class="introduction--logo">Oozou</h1>
    <p class="what-we-do">
      We Handcraft
      <span class="what-we-do--emphasis"><strong>Web</strong> &amp; <strong>Mobile</strong></span>
      <span class="what-we-do--emphasis">Applications</span>
    </p>
    <hr>
    <p class="introduction--description">Expert Design &amp; Development</p>
    <a class="introduction--button button button-m-white-transparent js-scrollto" href="#welcome">Find out more</a>
    <div class="introduction--scroll-down">
      <a class='js-scrollto' href="#welcome"><span class="fa fa-angle-double-down"></span><span class="u-sr-only"></span></a>
    </div>
  </div>

</header>

<div class="navbar-container navbar-container-m-sticky js-sticky">
开发者ID:aaroncnhk,项目名称:design,代码行数:31,代码来源:index.php

示例14:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="<?php 
echo Yii::$app->charset;
?>
"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title><?php 
echo Html::encode($this->title);
?>
</title>
        <?php 
// Css
$this->registerCssFile($this->theme->baseUrl . '/font-awesome/css/font-awesome.min.css', ['depends' => \yii\bootstrap\BootstrapAsset::className()]);
$this->registerCssFile($this->theme->baseUrl . '/css/style.css', ['depends' => \yii\bootstrap\BootstrapAsset::className()]);
?>
        <?php 
$this->head();
?>
    </head>

    <body class="gray-bg">
        <?php 
$this->beginBody();
?>
            <?php 
echo $content;
?>
        <?php 
$this->endBody();
开发者ID:quynhvv,项目名称:stepup,代码行数:31,代码来源:login.php

示例15:

$this->registerCssFile('@web/css/admin/metisMenu.min.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()]]);
?>

    <!-- Timeline CSS -->
    <?php 
$this->registerCssFile('@web/css/admin/timeline.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()]]);
?>

    <!-- Custom CSS -->
    <?php 
$this->registerCssFile('@web/css/admin/sb-admin-2.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()]]);
?>

    <!-- Morris Charts CSS -->
    <?php 
$this->registerCssFile('@web/css/admin/morris.css', ['depends' => [\yii\bootstrap\BootstrapAsset::className()]]);
?>

    <!-- Bootstrap Core JavaScript -->
    <!-- Metis Menu Plugin JavaScript -->
    <?php 
$this->registerJsFile('@web/js/admin/metisMenu.min.js', ['depends' => [\yii\web\JqueryAsset::className()]]);
?>

    <!-- Custom Theme JavaScript -->
    <?php 
$this->registerJsFile('@web/js/admin/sb-admin-2.js', ['depends' => [\yii\web\JqueryAsset::className()]]);
?>


</head>
开发者ID:ncuong,项目名称:lifeguard,代码行数:31,代码来源:admin.php


注:本文中的yii\bootstrap\BootstrapAsset::className方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。