Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
6ca204a0
Commit
6ca204a0
authored
May 22, 2013
by
Alexander Kochetov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yii\bootstrap\* another refactioring
parent
b317c082
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
26 deletions
+25
-26
Alert.php
framework/yii/bootstrap/Alert.php
+4
-4
Modal.php
framework/yii/bootstrap/Modal.php
+7
-7
TypeAhead.php
framework/yii/bootstrap/TypeAhead.php
+7
-8
Widget.php
framework/yii/bootstrap/Widget.php
+7
-7
No files found.
framework/yii/bootstrap/Alert.php
View file @
6ca204a0
...
...
@@ -79,7 +79,7 @@ class Alert extends Widget
$this
->
initOptions
();
echo
Html
::
beginTag
(
'div'
,
$this
->
o
ptions
)
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
$this
->
htmlO
ptions
)
.
"
\n
"
;
echo
$this
->
renderBodyBegin
()
.
"
\n
"
;
}
...
...
@@ -136,11 +136,11 @@ class Alert extends Widget
*/
protected
function
initOptions
()
{
$this
->
o
ptions
=
array_merge
(
array
(
$this
->
htmlO
ptions
=
array_merge
(
array
(
'class'
=>
'fade in'
,
),
$this
->
o
ptions
);
),
$this
->
htmlO
ptions
);
$this
->
addCssClass
(
$this
->
o
ptions
,
'alert'
);
$this
->
addCssClass
(
$this
->
htmlO
ptions
,
'alert'
);
if
(
$this
->
closeButton
!==
null
)
{
$this
->
closeButton
=
array_merge
(
array
(
...
...
framework/yii/bootstrap/Modal.php
View file @
6ca204a0
...
...
@@ -105,7 +105,7 @@ class Modal extends Widget
$this
->
initOptions
();
echo
$this
->
renderToggleButton
()
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
$this
->
o
ptions
)
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
$this
->
htmlO
ptions
)
.
"
\n
"
;
echo
$this
->
renderHeader
()
.
"
\n
"
;
echo
$this
->
renderBodyBegin
()
.
"
\n
"
;
}
...
...
@@ -212,14 +212,14 @@ class Modal extends Widget
*/
protected
function
initOptions
()
{
$this
->
o
ptions
=
array_merge
(
array
(
$this
->
htmlO
ptions
=
array_merge
(
array
(
'class'
=>
'modal hide'
,
),
$this
->
o
ptions
);
$this
->
addCssClass
(
$this
->
o
ptions
,
'modal'
);
),
$this
->
htmlO
ptions
);
$this
->
addCssClass
(
$this
->
htmlO
ptions
,
'modal'
);
$this
->
pluginO
ptions
=
array_merge
(
array
(
$this
->
o
ptions
=
array_merge
(
array
(
'show'
=>
false
,
),
$this
->
pluginO
ptions
);
),
$this
->
o
ptions
);
if
(
$this
->
closeButton
!==
null
)
{
$this
->
closeButton
=
array_merge
(
array
(
...
...
@@ -234,7 +234,7 @@ class Modal extends Widget
'data-toggle'
=>
'modal'
,
),
$this
->
toggleButton
);
if
(
!
isset
(
$this
->
toggleButton
[
'data-target'
])
&&
!
isset
(
$this
->
toggleButton
[
'href'
]))
{
$this
->
toggleButton
[
'data-target'
]
=
'#'
.
$this
->
o
ptions
[
'id'
];
$this
->
toggleButton
[
'data-target'
]
=
'#'
.
$this
->
htmlO
ptions
[
'id'
];
}
}
}
...
...
framework/yii/bootstrap/TypeAhead.php
View file @
6ca204a0
...
...
@@ -19,10 +19,9 @@ use yii\helpers\Html;
*
* ```php
* echo TypeAhead::widget(array(
* 'form' => $form,
* 'model' => $model,
* 'attribute' => 'country',
* '
pluginO
ptions' => array(
* '
o
ptions' => array(
* 'source' => array('USA', 'ESP'),
* ),
* ));
...
...
@@ -33,7 +32,7 @@ use yii\helpers\Html;
* ```php
* echo TypeAhead::widget(array(
* 'name' => 'country',
* '
pluginO
ptions' => array(
* '
o
ptions' => array(
* 'source' => array('USA', 'ESP'),
* ),
* ));
...
...
@@ -77,17 +76,17 @@ class TypeAhead extends Widget
* If [[model]] is null or not from an [[Model]] instance, then the field will be rendered according to
* the [[name]] attribute.
* @return string the rendering result
* @throws InvalidConfigException when none of the required attributes are set to render the textInput.
That is,
* if [[model]] and [[attribute]] are not set, then [[name]] is required.
* @throws InvalidConfigException when none of the required attributes are set to render the textInput.
*
That is,
if [[model]] and [[attribute]] are not set, then [[name]] is required.
*/
public
function
renderField
()
{
if
(
$this
->
model
instanceof
Model
&&
$this
->
attribute
!==
null
)
{
return
Html
::
activeTextInput
(
$this
->
model
,
$this
->
attribute
,
$this
->
o
ptions
);
return
Html
::
activeTextInput
(
$this
->
model
,
$this
->
attribute
,
$this
->
htmlO
ptions
);
}
elseif
(
$this
->
name
!==
null
)
{
return
Html
::
textInput
(
$this
->
name
,
$this
->
value
,
$this
->
o
ptions
);
return
Html
::
textInput
(
$this
->
name
,
$this
->
value
,
$this
->
htmlO
ptions
);
}
else
{
throw
new
InvalidConfigException
(
'Either "name" or "model" and "attribute" properties must be specified.'
);
throw
new
InvalidConfigException
(
"Either 'name' or 'model' and 'attribute' properties must be specified."
);
}
}
}
framework/yii/bootstrap/Widget.php
View file @
6ca204a0
...
...
@@ -28,21 +28,21 @@ class Widget extends \yii\base\Widget
/**
* @var array the HTML attributes for the widget container tag.
*/
public
$
o
ptions
=
array
();
public
$
htmlO
ptions
=
array
();
/**
* @var array the options for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible options.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* how to use the "Modal" plugin and the supported options (e.g. "remote").
*/
public
$
pluginO
ptions
=
array
();
public
$
o
ptions
=
array
();
/**
* @var array the event handlers for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible events.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* how to use the "Modal" plugin and the supported events (e.g. "shown").
*/
public
$
pluginE
vents
=
array
();
public
$
e
vents
=
array
();
/**
...
...
@@ -69,15 +69,15 @@ class Widget extends \yii\base\Widget
$view
->
registerAssetBundle
(
static
::
$responsive
?
'yii/bootstrap/responsive'
:
'yii/bootstrap'
);
$view
->
registerAssetBundle
(
"yii/bootstrap/
$name
"
);
if
(
$this
->
pluginO
ptions
!==
false
)
{
$options
=
empty
(
$this
->
pluginOptions
)
?
''
:
Json
::
encode
(
$this
->
pluginO
ptions
);
if
(
$this
->
o
ptions
!==
false
)
{
$options
=
empty
(
$this
->
options
)
?
''
:
Json
::
encode
(
$this
->
o
ptions
);
$js
=
"jQuery('#
$id
').
$name
(
$options
);"
;
$view
->
registerJs
(
$js
);
}
if
(
!
empty
(
$this
->
pluginE
vents
))
{
if
(
!
empty
(
$this
->
e
vents
))
{
$js
=
array
();
foreach
(
$this
->
pluginE
vents
as
$event
=>
$handler
)
{
foreach
(
$this
->
e
vents
as
$event
=>
$handler
)
{
$js
[]
=
"jQuery('#
$id
').on('
$event
',
$handler
);"
;
}
$view
->
registerJs
(
implode
(
"
\n
"
,
$js
));
...
...
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