-
Any call to find() which includes an attribute, such as `->find(5)` or `->find(['id' => 5])`, returns a result (a single model). Calling `->find()` (without attributes) returns an ActiveQuery object.
…
-
follow up to https://github.com/symfony/symfony/issues/12401
in the CMF project we have encountered some bugs with 5.3 that we cannot work around (mostly with image manipulation). Also 5.3 can cause …
-
_[update from schmunk42] Changed title, original title: Facebook User Login/Create Extension_
Yii's advanced template has a great user model and it would be nice if we could have an extension that ma…
-
Continued from: http://www.yiiframework.com/forum/index.php/topic/43047-guidelines-for-extension-authoring/
Template or command to generate a Yii2 extension, should include
- composer.json, see also …
-
It would be great if we have ability to set components on some basic class extended from `Component`, so in this way it will be smth. like `composite` pattern, also @samdark do you remeber this sugges…
-
possibly using Twitter bootstrap styles.
-
There is a huge interest in using a repository pattern and data mapper this days. It is adopted in Doctrine, and even guys from Laravel community uses repository on top of their Eloquent ORM.
As Yii2…
-
Currently Active Record relations are defined using static methods with signature “get{RelationName}”. I think it is not a good convention since methods “get*” are already reserved for the magic prop…
-
Related to http://www.yiiframework.com/forum/index.php/topic/43147-backward-compatibility-questions/
The thread suggests a couple of different variants about how to avoid the string mangling approach…