e6f5c46cdc
Fixes #15633 : Deprecate some things going away/changing in 2.1
...
- Deprecated `yii\base\BaseObject::className()` in favor of native PHP syntax `::class`, which does not trigger autoloading
- Deprecated XCache and Zend data cache support as caching backends
- Deprecated `yii\BaseYii::powered()` method
- Added `yii\base\InvalidArgumentException` and deprecated `yii\base\InvalidParamException`
- Added `yii\BaseYii::debug()` and deprecated `yii\BaseYii::trace()`
2018-02-11 01:48:29 +03:00
65f6b59b35
@inheritdoc
notation changed
2018-01-23 13:11:24 +02:00
1501c659ac
Add empty lines before return statements. ( #14682 ) [skip ci]
2017-08-21 01:58:49 +03:00
a50d9d8e3e
Enable include
rule in php-cs-fixer ( #14418 )
2017-07-10 13:19:57 +03:00
fe8a0a6a2e
Enable no_useless_else
rule in php-cs-fixer ( #14420 )
2017-07-10 11:26:21 +03:00
93f88bb7db
mention defaultRoles in getRolesByUser() docs
...
fixes #14393
2017-07-06 12:40:13 +02:00
ba0ab403b5
Added php-cs-fixer coding standards validation to Travis CI ( #14100 )
...
* php-cs-fixer: PSR2 rule.
* php-cs-fixer: PSR2 rule - fix views.
* Travis setup refactoring.
* Add php-cs-fixer to travis cs tests.
* Fix tests on hhvm-3.12
* improve travis config
* composer update
* revert composer update
* improve travis config
* Fix CS.
* Extract config to separate classes.
* Extract config to separate classes.
* Add file header.
* Force short array syntax.
* binary_operator_spaces fixer
* Fix broken tests
* cast_spaces fixer
* concat_space fixer
* dir_constant fixer
* ereg_to_preg fixer
* function_typehint_space fixer
* hash_to_slash_comment fixer
* is_null fixer
* linebreak_after_opening_tag fixer
* lowercase_cast fixer
* magic_constant_casing fixer
* modernize_types_casting fixer
* native_function_casing fixer
* new_with_braces fixer
* no_alias_functions fixer
* no_blank_lines_after_class_opening fixer
* no_blank_lines_after_phpdoc fixer
* no_empty_comment fixer
* no_empty_phpdoc fixer
* no_empty_statement fixer
* no_extra_consecutive_blank_lines fixer
* no_leading_import_slash fixer
* no_leading_namespace_whitespace fixer
* no_mixed_echo_print fixer
* no_multiline_whitespace_around_double_arrow fixer
* no_multiline_whitespace_before_semicolons fixer
* no_php4_constructor fixer
* no_short_bool_cast fixer
* no_singleline_whitespace_before_semicolons fixer
* no_spaces_around_offset fixer
* no_trailing_comma_in_list_call fixer
* no_trailing_comma_in_singleline_array fixer
* no_unneeded_control_parentheses fixer
* no_unused_imports fixer
* no_useless_return fixer
* no_whitespace_before_comma_in_array fixer
* no_whitespace_in_blank_line fixer
* not_operator_with_successor_space fixer
* object_operator_without_whitespace fixer
* ordered_imports fixer
* php_unit_construct fixer
* php_unit_dedicate_assert fixer
* php_unit_fqcn_annotation fixer
* phpdoc_indent fixer
* phpdoc_no_access fixer
* phpdoc_no_empty_return fixer
* phpdoc_no_package fixer
* phpdoc_no_useless_inheritdoc fixer
* Fix broken tests
* phpdoc_return_self_reference fixer
* phpdoc_single_line_var_spacing fixer
* phpdoc_single_line_var_spacing fixer
* phpdoc_to_comment fixer
* phpdoc_trim fixer
* phpdoc_var_without_name fixer
* psr4 fixer
* self_accessor fixer
* short_scalar_cast fixer
* single_blank_line_before_namespace fixer
* single_quote fixer
* standardize_not_equals fixer
* ternary_operator_spaces fixer
* trailing_comma_in_multiline_array fixer
* trim_array_spaces fixer
* protected_to_private fixer
* unary_operator_spaces fixer
* whitespace_after_comma_in_array fixer
* `parent::setRules()` -> `$this->setRules()`
* blank_line_after_opening_tag fixer
* Update finder config.
* Revert changes for YiiRequirementChecker.
* Fix array formatting.
* Add missing import.
* Fix CS for new code merged from master.
* Fix some indentation issues.
2017-06-12 12:25:45 +03:00
4b9e48b8dc
improved docs: link term "path alias" to the guide
2017-06-02 10:45:20 +02:00
375ea7a847
Fixes #13951 : renamed get-method which was conflicting with existing property ( #14055 )
2017-04-26 13:32:58 +03:00
a182ce57fc
Fixes for issues found with Static Code Analysis with Php Inspections (EA Extended) ( #13606 )
...
* Php Inspections (EA Extended): language level migration fixes
* Php Inspections (EA Extended): instanceof a trait always return false
* Php Inspections (EA Extended): fixed preg_quote (/ is not escaped by default)
* Php Inspections (EA Extended): fixed a greedy regex
* Php Inspections (EA Extended): refereted instanceof self in a trait
* Php Inspections (EA Extended): revert language level changes in requirements checker
* Php Inspections (EA Extended): revert language level changes in requirements checker
* Php Inspections (EA Extended): more greedy regexes fixed
2017-02-22 17:07:52 +03:00
3a4505ac08
Fixes #11230 : Include defaultRoles
in yii\rbac\DbManager->getRolesByUser()
results
2017-02-15 01:26:33 +03:00
5795b3937e
Added rbac\BaseManager::hasNoAssignments()
2016-12-17 12:37:36 +02:00
4aa935e69e
Fixes #12055 : Changed boolean
to bool
and integer
to int
in phpdoc
2016-11-07 02:51:39 +03:00
32f4dc8997
Fixes #5385 : links created from classes to corresponding guide articles ( #12920 )
2016-11-04 18:55:14 +03:00
73a30780b3
Fixes #12810 : getChildRoles() throws an exception when role has no children
2016-10-24 14:11:09 +03:00
aa4b49a2e6
Fixes #11245 : Added yii\rbac\ManagerInterface::getRolesByRole($roleName)
method. Implement to DbManager
and PhpManager
2016-10-04 14:44:18 +03:00
c9fa71e5ca
added missing @since
tag
2016-05-25 16:34:19 +03:00
b7b8348c73
yii\rbac\PhpManager
now invalidates script file cache performed by 'OPCache' or 'APC' on file saving
2016-05-25 12:40:40 +03:00
627233715b
proper @since
annotations
2016-04-28 02:25:32 +02:00
049ea37f77
Fixes #10993 : Fixed yii\rbac\DbManager::removeAllRules()
and yii\rbac\PhpManager::removeAllItems()
2016-03-16 01:53:48 +03:00
7eff23886c
Fixes #10726 : Added yii\rbac\ManagerInterface::canAddChild()
2016-03-15 22:43:27 +03:00
effe3b0b94
phpdoc adjustments
2016-02-07 18:12:22 +01:00
cc4849a3ae
Renamed getUserIDsByRole → getUserIdsByRole for consistency
...
See 0e0079bcae (commitcomment-14953758)
2015-12-14 12:34:00 +03:00
0e0079bcae
Fixes #9573 : Added yii\rbac\ManagerInterface::getUserIDsByRole()
and implementations
2015-12-08 20:00:48 +03:00
be407391ce
Fixes #10101 : Fixed assignments saving on role removing in \yii\rbac\PhpManager
2015-11-06 19:54:35 +03:00
1b3770fd21
Use === instead of == where possible
2015-10-10 01:04:35 +03:00
5ab4f0f090
Better quotes usage in strings
...
- Use single quote where interpolation isn't necessary
- Use interpolation when it's better than concatenation
2015-10-10 00:23:52 +03:00
0d4d54c3c7
Bug #9714 : Fixed unable to save users assignments
2015-09-18 12:31:27 +03:00
5569eaae06
Fixes #9314 : Fixed yii\rbac\DbManager::getPermissionsByUser()
not returning permissions directly assigned to a user
2015-09-05 01:31:10 +03:00
28dce6c9b6
Fixes #7656 : Fixed yii\rbac\DbManager::getRolesByUser()
and yii\rbac\PhpManager::getRolesByUser()
to return roles only
2015-04-21 00:29:04 +03:00
b806fc7108
Corrected fix for #8032
2015-04-12 12:17:35 +03:00
82033125c4
Fixes #8032 : yii\rbac\PhpManager::updateItem()
was unable to rename item updated
2015-04-11 01:24:32 +03:00
2c02765229
Fixing wrong docs in RBAC PHPManager and wrong paths in security-authorization.md
...
close #5348
2014-10-04 12:22:34 +02:00
220b60f3b2
Fixes #4275 : Added removeChildren()
to yii\rbac\ManagerInterface
and implementations
2014-09-30 02:07:54 +04:00
91f61bfc3b
Fixed phpdoc
2014-09-06 01:44:44 +04:00
f4a9646a22
more on HHVM compatibility
2014-08-15 16:04:02 +02:00
74c99dc959
code style + test groups
2014-07-29 01:52:34 +02:00
d1ccb92a34
Fixes #4489 : RBAC PhpManager wasn't saving multiple assignmentsFixes #4489 : RBAC PhpManager wasn't saving multiple assignments properly
2014-07-28 22:09:38 +04:00
ed533172d7
Adjusted rbac ManagerInterface
2014-07-25 18:24:54 +04:00
c8a5012610
#4310 : Removed $data
from signature of yii\rbac\ManagerInterface
2014-07-21 19:50:29 +04:00
c68e5f1fdb
Adjusted naming
2014-06-29 16:18:19 +04:00
3eee7b8e4b
Fixes #4072 : \yii\rbac\PhpManager
adjustments
...
- Data is now stored in three separate files for items, assignments and rules. File format is simpler.
- Removed `authFile`. Added `itemsFile`, `assignmentsFile` and `rulesFile`.
- `createdAt` and `updatedAt` are now properly filled with corresponding file modification time.
- `save()` and `load()` are now protected instead of public.
- Added unit test for saving and loading data.
2014-06-29 03:32:46 +04:00
0c14f47f9a
Fixes #3793 : Changed inline autocomplete hints style to get more IDEs support
2014-06-20 17:40:00 +04:00
5c84d3fd42
Fixes #3817 : yii\rbac\PhpManager::getChildren()
returns null instead of expected empty array
2014-06-11 22:59:51 -04:00
f22953d092
Small typo in the framework/rbac/PhpManager.php
2014-05-21 11:42:40 +04:00
1641e057a9
VarDumper::export()
applied over framework.
2014-05-20 16:35:12 +03:00
c27ac8ef0e
updated phpdoc
2014-04-26 03:39:46 +02:00
14b782cf01
Added $user
as the first parameter of yii\rbac\Rule::execute()
2014-04-16 21:52:46 -04:00
ce9a8f209a
Fixes #3132 : yii\rbac\PhpManager
now supports more compact data file format
2014-04-16 10:17:28 -04:00
8ac8d487ad
Fixes #3128 : Fixed the bug that defaultRoles
set in RBAC manager was not working as specified
2014-04-16 08:52:41 -04:00