-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from JorisDebonnet/ss4-improvements
SS4 improvements
- Loading branch information
Showing
34 changed files
with
260 additions
and
225 deletions.
There are no files selected for viewing
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
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
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
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
File renamed without changes
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* extracted from silverstripe/framework */ | ||
|
||
(function ($) { | ||
$(document).on('click', '.confirmedpassword .showOnClick a', function () { | ||
var $container = $('.showOnClickContainer', $(this).parent()); | ||
|
||
$container.toggle('fast', function() { | ||
$container.find('input[type="hidden"]').val($container.is(":visible") ? 1 : 0); | ||
}); | ||
|
||
return false; | ||
}) | ||
.find(".confirmedpassword .showOnClickContainer").hide(); | ||
})(jQuery); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,39 @@ | ||
{ | ||
"name": "symbiote/silverstripe-memberprofiles", | ||
"description": "Member registration and profile management", | ||
"type": "silverstripe-module", | ||
"keywords": ["silverstripe", "member", "profile", "registration"], | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Andrew Short", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"silverstripe/framework": "~4.0", | ||
"silverstripe/cms": "~4.0" | ||
}, | ||
"suggest": { | ||
"ajshort/silverstripe-gridfieldextensions": "Allows drag-and-drop reordering of fields" | ||
}, | ||
"extra": { | ||
"expose": [ | ||
"client" | ||
"name": "symbiote/silverstripe-memberprofiles", | ||
"description": "Member registration and profile management", | ||
"type": "silverstripe-vendormodule", | ||
"keywords": ["silverstripe", "member", "profile", "registration"], | ||
"license": "BSD-3-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Andrew Short", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"silverstripe/framework": "~4.0", | ||
"silverstripe/cms": "~4.0" | ||
}, | ||
"suggest": { | ||
"ajshort/silverstripe-gridfieldextensions": "Allows drag-and-drop reordering of fields" | ||
}, | ||
"extra": { | ||
"expose": [ | ||
"client" | ||
], | ||
"installer-name": "memberprofiles", | ||
"branch-alias": { | ||
"dev-master": "3.0.x-dev" | ||
}, | ||
"screenshots": [ | ||
"http://ajshort.github.com/silverstripe-memberprofiles/screenshots/edit-profile.png", | ||
"http://ajshort.github.com/silverstripe-memberprofiles/screenshots/cms-profile-fields.png", | ||
"http://ajshort.github.com/silverstripe-memberprofiles/screenshots/member-list.png" | ||
] | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Symbiote\\MemberProfiles\\": "src/", | ||
"Symbiote\\MemberProfiles\\Tests\\": "tests/" | ||
} | ||
"branch-alias": { | ||
"dev-master": "3.0.x-dev" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Symbiote\\MemberProfiles\\": "src/", | ||
"Symbiote\\MemberProfiles\\Tests\\": "tests/" | ||
} | ||
}, | ||
"replace": { | ||
"silverstripe/memberprofiles": "self.version", | ||
"ajshort/silverstripe-memberprofiles": "self.version", | ||
"silverstripe-australia/memberprofiles": "self.version" | ||
} | ||
"replace": { | ||
"silverstripe/memberprofiles": "self.version", | ||
"ajshort/silverstripe-memberprofiles": "self.version", | ||
"silverstripe-australia/memberprofiles": "self.version" | ||
} | ||
} |
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
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
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
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
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
src/Controllers/MemberApprovalController.php → src/Pages/MemberApprovalController.php
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
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
Oops, something went wrong.