In the master branch of our QUIQQER Core you are now able to find some new improvements and features.
QUIQQER is a modular based management system.
Modular design. Comfortable backend. Can be implemented quickly. The all-round carefree Enterprise Content Management System.
New Features
What feature(s) did you add?
- API extension for the Panel Utils (Its easier to open an User Panel)
- Grid cells now have a data-index attribute (Its easier to get the column index by a grid cell)
- Its easier to test a Address on different data
- Easier authentication status check
How did you implement it/them?
- API extension for the Panel Utils [5d89a8f]
- Grid cells now have a data-index attribute [5ce133a]
- Its easier to test a Address on different data [122bb7b]
- Easier authentication status check [785b975]
A complete history changelog can you find [here]
API Details
Since there have been some simplified API changes, we present these here in detail once again
API extension for the Panel Utils
It is now easier to open a user panel:
require(['utils/Panels'], function (PanelUtils) {
PanelUtils.openUserPanel(USER_ID);
});
Easier authentication status check
Often there is a problem to check the current authentication status of a user.
For this we have implemented a simple call, this also updates user messages.
require(['QUIQQER'], function(QUIQQER) {
// without callback
QUIQQER.isAuthenticated();
// with calback
QUIQQER.isAuthenticated().then(function() {
// your callback
});
});
Thanks for reading
Hen and Peat, for PCSG Developers
Posted on Utopian.io - Rewarding Open Source Contributors