Skip to content

1.3

Choose a tag to compare

@AntonyZ89 AntonyZ89 released this 08 Dec 03:53
· 71 commits to master since this release
  • Add @alias. to query and it be replaced by tableName or a alias.
// Query
User::find()->alias('example')->where(['@alias.name' => 'Antony']);
# result
SELECT `user`.* FROM `user` as `example` WHERE `example`.`name` = 'Antony'
  • Use $query->groupBy(false) to avoid GROUP BY on query.
  • Fixed javascript error when any date input has been not found.
  • Pjax fixes.
  • ActiveDataProvider created to fix a error when GROUP BY exists on query and only first page of models is returned.
  • Template fixes.
  • functions.php added with some useful functions.
  • ActiveQuery fixes.
  • Bug fixes