Programar en Yii 1 Bootstrap

1)
descargar la extension yiistrap desde aqui
http://www.yiiframework.com/extension/yiistrap/

(la version a descargar es yiistrap-1.1.1.zip)

2)
crear la carpeta "bootstrap"
protected/extensions/bootstrap

y copiar ahi el contenido de la carpeta de-zipeada de yiistrap

3)
editar el archivo de configuración protected/config/main.php

<?php
// main configuration
return array(
 ...
    // path aliases
    'aliases' => array(
        ...
        'bootstrap' => realpath(__DIR__ . '/../extensions/bootstrap'), // change this if necessary
    ),
    // import paths
    'import' => array(
        ...
        'bootstrap.helpers.TbHtml',
    ),
    // application modules
    'modules' => array(
        ...
        'gii' => array(
            'generatorPaths' => array('bootstrap.gii'),
        ),
    ),
    // application components
    'components' => array(
        ...
        'bootstrap' => array(
            'class' => 'bootstrap.components.TbApi',   
        ),
    ),
);
 
4) agregar la siguiente linea en la sección de head de protected/views/layouts/main.php
 
<?php Yii::app()->bootstrap->register(); ?> 
 
5) para ver los distintos elementos de bootstrap leer
 
http://www.getyiistrap.com/site/basics
  
 

No hay comentarios:

Publicar un comentario

linux ubuntu mint actualizar chrome

 desde una terminal: $ sudo apt update $ sudo apt install google-chrome-stable