Alexander Makarov
5fc01bce69
Better names for PHP error-exceptions
2014-01-09 18:29:29 +04:00
Alexander Makarov
c79994c773
Removed exception translation, updated translations
2014-01-09 18:03:25 +04:00
Alexander Makarov
4bbd844b23
fixes #1796
2014-01-06 15:14:36 +04:00
Carsten Brandt
81aea73067
finished offline template with all information
2014-01-05 21:11:41 +01:00
Carsten Brandt
8d09633bb9
allow class level trigger call on Event subclasses
...
e.g. UserEvent::trigger('event', 'class');
should result in a UserEvent to be passed to the handlers instead of
a base\Event.
2014-01-04 11:48:03 +01:00
Carsten Brandt
4bb2ee95b7
updated docs of Event
2014-01-04 11:47:47 +01:00
Paul Kofmann
1924a528be
Redundant event's instanceof check
...
And some docs punctuation.
2014-01-04 11:23:09 +01:00
Carsten Brandt
5b8971352c
Merge pull request #1708 from crtlib/patch-2
...
Small fixes for the sake of consistency
2013-12-30 08:00:02 -08:00
Carsten Brandt
173c7de82b
changed default value of Component::_events
2013-12-30 16:55:57 +01:00
Paul Kofmann
934051e804
Small fixes for the sake of consistency
2013-12-30 16:48:11 +01:00
Qiang Xue
89afcdece8
Merge pull request #1700 from crtlib/patch-1
...
Using constants instead of literals in Behavior docs
2013-12-30 07:08:53 -08:00
Qiang Xue
1361bd3c7f
Merge pull request #1683 from Ragazzo/mail_event
...
Mail events before/after
2013-12-30 06:57:22 -08:00
Mark
12e46921b3
line fix
2013-12-30 18:40:10 +04:00
Qiang Xue
b09f709adc
Fixed build break.
2013-12-30 09:32:51 -05:00
Mark
c0a2201143
end of line fix
2013-12-30 18:30:43 +04:00
Mark
f267f4623f
reverted $isValid for events.
2013-12-30 18:25:38 +04:00
Qiang Xue
bf73fe80d4
Merge pull request #1703 from crtlib/patch-2
...
Removed redundant code in detachBehaviors()
2013-12-30 06:24:23 -08:00
Qiang Xue
c88016f9d8
added default mail config to application.
2013-12-30 09:16:39 -05:00
Paul Kofmann
ee81915a1e
Removed redundant code in detachBehaviors()
...
After ensureBehaviors() call $this->_behaviors is an array already.
And since detachBehavior() unsets elements in $this->_behaviors, $this->_behaviors turns out to be an empty array after all iterations.
2013-12-30 15:14:11 +01:00
Paul Kofmann
6e34488fa5
Using constants instead of literals in Behavior
2013-12-30 12:42:41 +01:00
Mark
c0316a10dd
added mail events before/after send
2013-12-29 06:23:38 +04:00
Carsten Brandt
b59b77cd4f
added timeZone property to i18n formatter
...
fixed #1021
2013-12-17 13:45:16 +01:00
Carsten Brandt
d3a181c674
fixed controllerMap docs in Module
...
fixes #1541
2013-12-16 11:03:30 +01:00
Qiang Xue
d3a450f5fd
doc fix.
2013-12-15 13:55:11 -05:00
Qiang Xue
63640db65c
Added Widget::autoIdPrefix to support prefixing automatically generated widget IDs
2013-12-13 21:15:43 -05:00
Alexander Makarov
66e5be7f7f
Widget IDs are now always unique no matter if it's the same request or new one
2013-12-12 23:45:54 +01:00
Carsten Brandt
85b5c75b61
doc style
2013-12-12 22:01:41 +01:00
egorpromo
5156cc14ce
More docs
2013-12-12 21:41:09 +07:00
Qiang Xue
eab7e4a21a
Added $formName to Model::load().
2013-12-10 18:17:24 -05:00
Carsten Brandt
2c9a8b910f
make null format look nice by default
2013-12-10 20:42:09 +01:00
Qiang Xue
fec58f4e29
Fixes #1472 : set event sender if possible.
2013-12-10 09:25:01 -05:00
Qiang Xue
cb4a8c764c
Refactored validators.
2013-12-06 14:19:17 -05:00
Carsten Brandt
83273382a7
changed order of preloading components and extensions
...
load extensions before preloading components to have aliases set for
extensions like debug module.
2013-12-01 04:45:09 +01:00
Qiang Xue
73442fb12a
doc fix.
2013-11-30 15:51:20 -05:00
Qiang Xue
c7c13a6693
Added concrete http exception classes.
2013-11-29 21:22:08 -05:00
Qiang Xue
dd9facceed
Added $key parameter to several methods in grid view.
2013-11-29 20:34:06 -05:00
Qiang Xue
a5e3c00d75
replaced inheritdoc tags.
2013-11-29 12:49:07 -05:00
Qiang Xue
323008b177
Fixes #1296 : stricter check of dashes in route.
2013-11-29 12:31:09 -05:00
Qiang Xue
a1f7f8bcbe
Fixes #1335 : support view extension fallback
2013-11-28 23:58:14 -05:00
Qiang Xue
d6f97ff4c1
Added Application::getMail().
2013-11-28 09:08:02 -05:00
Carsten Brandt
83527e85ca
made Model::attributes() non static again
...
- allows to have dynamic definition of attributes depended on the
instance
- there was no real need for it to be static. Places that used it static
have been refactored.
fixes #1318
2013-11-28 01:01:48 +01:00
Qiang Xue
1fe7f5aaf8
Fixes #1335 : findLayoutFile() should respect View::defaultExtension.
2013-11-27 08:47:10 -05:00
Alexander Makarov
af778d1a13
Fixed actions() docs where alias was used to refer to class
2013-11-27 13:36:05 +04:00
Qiang Xue
35de471aa6
Merge pull request #1327 from kamilsk/master
...
fix issue #1315
2013-11-26 10:11:32 -08:00
Kamil
7e12ae5767
fix issue #1315
2013-11-26 21:30:06 +04:00
Qiang Xue
1b504be650
Fixes #1323 : Added View::defaultExtension.
2013-11-26 08:52:21 -05:00
Panagiotis Moustafellos
2ff8ac3d61
fixed PhpDoc by swapping to {@inheritdoc}
2013-11-26 04:24:20 +02:00
Qiang Xue
4b353c7bce
Fixes #1297 : CSRF not generated on error pages
2013-11-24 17:41:09 -05:00
Qiang Xue
e4e376ba28
fixed test break.
2013-11-24 11:52:50 -05:00
Qiang Xue
858326c074
Fixed test break.
2013-11-24 11:51:55 -05:00