This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 523
Button Generate password and chackbox show/hide password #1249
Open
manieqq
wants to merge
113
commits into
master
Choose a base branch
from
develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Forum user pslorick reported that functions defined in MY_*_helper could not override those defined in BF_*_helper: http://forums.cibonfire.com/discussion/2911/can-i-override-bf-form-helper
- Many of the BF_Loader methods were only needed to work around differences between the loaders for CI2 and CI3, and have now been removed - The Modules library will no longer load controllers which do not have a ucfirst() filename
* The Migrations library's constructor now loads the file containing the abstract class via a require_once() call. * Removed deprecated methods/properties from the Migrations library.
Removed use of `module_file_path()` from `Images` controller, replaced with `Modules::file_path()`
Removed deprecated properties/methods from docs
use `Assets::setGlobals()` instead
use `CommonMark->convert()` instead
use `Form::prepValue()` instead
use `Template::setSessionUse()`, `Template::setLayout()`, and `Template::getLayout()` instead
* Use `Modulebuilder->buildFiles()` instead of `Modulebuilder->build_files()`. * Use `mkdir()`, passing true as the third parameter, instead of `Modulebuilder->mkdir_recursive()`. * In the `builder` module's `Developer` controller, the `_check_writeable()` method has been removed (replaced with the private method `checkWritable()`).
Use the equivalent `translate_*` entries, instead.
Use `renderSearchBox()` instead.
Use `Contexts::getContexts()` and `Contexts::setContexts()` instead
* Removed `save_user()` from `Users` controller (replaced with `saveUser()`) * Restructured cookie handling in `Auth` library, as well as the `Auth` library's loading of `Template`/settings libraries and `cookie_helper`
- Replaced with reading the property `router->method`
Removed CI2 compatibility from config files
Latest changes from [Wiredesignz' bitbucket](https://bitbucket.org/wiredesignz/codeigniter-modular- extensions-hmvc)
This was added to App_hooks to provide forward-compatibility for CI2.
- showProfiler() checked for CI2 to determine use of $this->input->is_cli_request() vs. is_cli() - deprecated the public method autoload_classes() in favor of protected method autoloadClasses()
- Fix migrate v44 - Fix admin header profile link
Fix minor bugs
the pattern string can not work right in my workspace. And it can stile work right after remove `<br />` for old version users.
Update Developer.php
in this helper class, the function ` read_config()` read config files from environment path, but the function `write_config()` not do this, so it can not work good for that who use multiple environments. I fix this for by following the logic of function `read_config()`.
Update config_file_helper.php
Update deprecated constructor in PHP 7
Update Markdown helpers constructor
Add multi languages support for module description on context menu
…asset files Solution to issue #1263
Assets: Generate different combined filenames for different included asset files
CI 3.1.5 Update.
Added core update + patches initial basic testing done.
CI3 Updates & Fixes 3.1.6
Spanish Lang - Fix
Added core update + patches Added Session Lib fix (3.1.10) initial basic testing done.
CI3 core Updates & Fixes 3.1.9
Have all these commits been integrated already? |
Fix: bracket for count() argument Fix: The each() function is deprecated Fix @font-face parsing missing = Fix: @Keyframes double quotes Fix: case - value of url() contains parentheses remove Whitelist comments
Update CSSmin to v3.0.6
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello, I have a proposal
To add a User Module button "Generete password" and show / hide password checkbox
We need to create a file in generate_password.js location: bonfire / modules / users / assets / js
file generate_password.js
then the controller: / bonfire / modules / users / controllers add code
Assets :: add_module_js ( 'users', 'generate_password.js');
and the last step in the files:
/bonfire/modules/users/views/settings/user_form.php
change:
echo form_open ($ this-> uri-> uri_string (), array ( 'class' => 'form-horizontal', 'autocomplete' => 'off'));
fix:
echo form_open ($ this-> uri-> uri_string (), array ( 'id' => 'myform', 'class' => 'form-horizontal', 'autocomplete' => 'off'));
and add line:
<input type="hidden" name="length" value="<? echo settings_item('auth.password_min_length'); ?>">
/bonfire/modules/users/views/user_fields.php
add code:
change:
fix: