Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
Yii Bootstrap 3
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Common
Yii Bootstrap 3
Commits
5ad4de9d
Commit
5ad4de9d
authored
Feb 07, 2012
by
Eric Nishio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the test page and fixed the framework path.
parent
8af7baf9
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
192 additions
and
11 deletions
+192
-11
.hgsubstate
.hgsubstate
+0
-1
jquery.ui.bootalert.js
assets/js/jquery.ui.bootalert.js
+1
-1
index.php
demo/index.php
+2
-1
main.php
demo/protected/views/layouts/main.php
+4
-5
index.php
demo/protected/views/site/index.php
+185
-3
No files found.
.hgsubstate
View file @
5ad4de9d
0000000000000000000000000000000000000000 demo/yii
assets/js/jquery.ui.bootalert.js
View file @
5ad4de9d
...
...
@@ -33,7 +33,7 @@
* Creates the widget.
*/
_create
:
function
()
{
var
alerts
=
this
.
element
.
find
(
'.alert
-message
'
);
var
alerts
=
this
.
element
.
find
(
'.alert'
);
for
(
var
i
=
0
,
l
=
alerts
.
length
;
i
<
l
;
++
i
)
{
var
alert
=
$
(
alerts
[
i
]
);
...
...
demo/index.php
View file @
5ad4de9d
<?php
define
(
'Yii_DEBUG'
,
true
);
// change the following paths if necessary
$yii
=
dirname
(
__FILE__
)
.
'/
../../../yii-1.1.9.r3527
/framework/yii.php'
;
$yii
=
dirname
(
__FILE__
)
.
'/
yii
/framework/yii.php'
;
$config
=
dirname
(
__FILE__
)
.
'/protected/config/main.php'
;
// remove the following lines when in production mode
...
...
demo/protected/views/layouts/main.php
View file @
5ad4de9d
...
...
@@ -25,7 +25,6 @@
array
(
'label'
=>
'Logout ('
.
Yii
::
app
()
->
user
->
name
.
')'
,
'url'
=>
array
(
'/site/logout'
),
'visible'
=>!
Yii
::
app
()
->
user
->
isGuest
)
),
),
'<form class="navbar-search pull-left" action=""><input type="text" class="search-query span2" placeholder="Search"></form>'
,
),
));
?>
...
...
@@ -33,12 +32,12 @@
<div
class=
"hero-unit"
>
<h1>
<?php
echo
CHtml
::
encode
(
Yii
::
app
()
->
name
);
?>
</h1>
</div>
<!-- header -->
</div>
<?php
if
(
!
empty
(
$this
->
breadcrumbs
))
:?>
<?php
if
(
!
empty
(
$this
->
breadcrumbs
))
:?>
<?
php
$this
->
widget
(
'bootstrap.widgets.BootCrumb'
,
array
(
'links'
=>
$this
->
breadcrumbs
,
));
?>
<!-- breadcrumbs -->
));
?>
<?php
endif
?>
<div
class=
"row"
>
...
...
@@ -47,7 +46,7 @@
<hr
/>
<div
id
=
"footer"
>
<div
class
=
"footer"
>
©
Company
<?php
echo
date
(
'Y'
);
?>
</div>
...
...
demo/protected/views/site/index.php
View file @
5ad4de9d
<?php
$this
->
pageTitle
=
Yii
::
app
()
->
name
;
?>
<h2>
Welcome,
</h2>
<ul
class=
"nav nav-pills"
>
<li><a
href=
"#bootMenu"
>
BootMenu
</a></li>
<li><a
href=
"#bootAlert"
>
BootAlert
</a></li>
<li><a
href=
"#bootCrumb"
>
BootCrumb
</a></li>
<li><a
href=
"#bootActiveForm"
>
BootActiveForm
</a></li>
<li><a
href=
"#bootTwipsy"
>
BootTwipsy
</a></li>
<li><a
href=
"#bootPopover"
>
BootPopover
</a></li>
<li><a
href=
"#bootModal"
>
BootModal
</a></li>
</ul>
<p>
This is the Yii-Bootstrap demo application.
</p>
\ No newline at end of file
<hr
/>
<div
id=
"bootMenu"
>
<h3>
BootMenu
</h3>
<?php
$this
->
widget
(
'BootMenu'
,
array
(
'type'
=>
'tabs'
,
// '', tabs or pills, defaults to tabs
'items'
=>
array
(
array
(
'label'
=>
'Home'
,
'url'
=>
array
(
'site/index'
)),
array
(
'label'
=>
'About'
,
'url'
=>
'#'
),
array
(
'label'
=>
'Dropdown'
,
'items'
=>
array
(
array
(
'label'
=>
'Secondary link'
,
'url'
=>
'#'
),
array
(
'label'
=>
'Something else here'
,
'url'
=>
'#'
),
'---'
,
array
(
'label'
=>
'Another link'
,
'url'
=>
'#'
),
)),
array
(
'label'
=>
'Dropdown'
,
'items'
=>
array
(
array
(
'label'
=>
'Secondary link'
,
'url'
=>
'#'
),
array
(
'label'
=>
'Something else here'
,
'url'
=>
'#'
),
'---'
,
array
(
'label'
=>
'Another link'
,
'url'
=>
'#'
),
)),
array
(
'label'
=>
'Contact'
,
'url'
=>
array
(
'site/contact'
)),
),
));
?>
<p>
Menu items (single
&
dropdown) placed after a dropdown item appear wrongly.
</p>
</div>
<hr
/>
<div
id=
"bootAlert"
>
<h3>
BootAlert
</h3>
<?php
Yii
::
app
()
->
user
->
setFlash
(
'success'
,
'Success!'
);
?>
<?php
Yii
::
app
()
->
user
->
setFlash
(
'warning'
,
'This is a warning.'
);
?>
<?php
Yii
::
app
()
->
user
->
setFlash
(
'info'
,
'Attention!'
);
?>
<?php
Yii
::
app
()
->
user
->
setFlash
(
'error'
,
'This is an error.'
);
?>
<?php
$this
->
widget
(
'bootstrap.widgets.BootAlert'
,
array
(
'options'
=>
array
(
'displayTime'
=>
0
),
));
?>
</div>
<hr
/>
<div
id=
"bootCrumb"
>
<h3>
BootCrumb
</h3>
<?php
$this
->
widget
(
'BootCrumb'
,
array
(
'links'
=>
$this
->
breadcrumbs
,
'separator'
=>
'/'
,
'homeLink'
=>
array
(
'label'
=>
'Home'
,
'url'
=>
Yii
::
app
()
->
homeUrl
),
'links'
=>
array
(
'Products'
=>
array
(
'products/view'
),
'Users'
=>
array
(
'users/view'
),
'Current Page'
,
),
));
?>
</div>
<hr
/>
<div
id=
"bootActiveForm"
>
<h3>
BootActiveForm
</h3>
<p>
[Include form fields]
</p>
<?php
$form
=
$this
->
beginWidget
(
'BootActiveForm'
,
array
(
'id'
=>
'login-form'
,
'enableClientValidation'
=>
false
,
'clientOptions'
=>
array
(
'validateOnSubmit'
=>
false
,
),
));
?>
<?php
/** @var BootActiveForm $form */
?>
<?php
//echo $form->textFieldRow($model, 'username'); ?>
<?
php
//echo $form->passwordFieldRow('password'); ?>
<?
php
//echo $form->checkBoxRow('rememberMe'); ?>
<
div
class
="
actions
">
<?php echo CHtml::submitButton('Login', array('class'=>'btn-primary')); ?>
<?php echo CHtml::submitButton('Login', array('class'=>'btn-success')); ?>
<i class="
icon
-
search
icon
-
white
"><?php echo CHtml::button('Login', array('class'=>'btn btn-primary')); ?></i>
<p>Button icon classes do not work.</p>
</div>
<?php
$this->endWidget
(); ?>
</div>
<hr />
<div id="
bootTwipsy
">
<h3>BootTwipsy</h3>
<?php echo CHtml::link('Click Here', array('#'), array('title'=>'Tooltip text.', 'class'=>'btn btn-primary')); ?>
<p>Tooltips appear at the bottom-left corner of the page.</p>
</div>
<hr />
<div id="
bootPopover
">
<h3>BootPopover</h3>
<?php
$this->widget
('BootPopover',array(
'selector'=>'.pop',
'options'=>array(
'placement'=>'above',
'showEvent'=>'mouseenter',
'hideEvent'=>'mouseleave',
'offset'=>0, // tooltip offset in pixels
'live'=>false, // use .live instead of .bind?
),
)); ?>
<?php echo CHtml::link('Click Here', array('#'), array('title'=>'Tooltip text.', 'class'=>'btn btn-primary pop')); ?>
<p>Popover tooltips do not appear correctly.</p>
</div>
<hr />
<div id="
bootModal
">
<h3>BootModal</h3>
<?php
$this->beginWidget
('BootModal',array(
'id'=>'modal',
'options'=>array(
'title'=>'Sample title',
'backdropClose'=>false, // close the modal when the backdrop is clicked?
'escapeClose'=>false, // close the modal when escape is pressed?
'open'=>false, // should we open the modal on initialization?
'closeTime'=>350,
'openTime'=>1000,
'buttons'=>array(
array(
'label'=>'Ok',
'class'=>'btn primary',
'click'=>"
js
:
function
()
{
.....
}
",
),
array(
'label'=>'Cancel',
'class'=>'btn',
'click'=>"
js
:
function
()
{
$
(
'#modal'
)
.
bootModal
(
'close'
);
return
false
;
}
",
),
),
),
)); ?>
<?php
$this->endWidget
(); ?>
<div id="
modal
" class="
modal
hide
fade
" style="
display
:
none
;
">
<div class="
modal
-
header
">
<a class="
close
" data-dismiss="
modal
">×</a>
<h3>Modal Heading</h3>
</div>
<div class="
modal
-
body
">
<h4>Text in a modal</h4>
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem.</p>
<h4>Popover in a modal</h4>
<p>
<h4>Tooltips in a modal</h4>
<p>
</div>
<div class="
modal
-
footer
">
<a class="
btn
btn
-
primary
" href="
#">Save changes</a>
<
a
class
="
btn
" data-dismiss="
modal
" href="
#">Close</a>
</
div
>
</
div
>
<
a
href
=
"#"
onclick
=
"$('#modal').bootModal('open'); return false;"
>
Open
</
a
>
<
a
class
="
btn
" data-toggle="
modal
" href="
#modal">Launch Modal</a>
<
p
>
Cannot
get
this
to
work
.</
p
>
</
div
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment