1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-09 20:18:08 +02:00
Commit Graph

789 Commits

Author SHA1 Message Date
Achim Ennenbach
c2952a1239 fixes e_form::checkboxes() not displaying labels properly that contain a
'=' character.

Also overwrote any supplied options.

Line endings should be Unix LF (was Windows CRLF after rebase master ?!)
Another last try 3 ...?
2019-03-20 18:49:11 +01:00
Cameron
21a213662c Admin-ui: Moved "help" tool-tip to the left to avoid clashes with datepicker etc. 2019-03-05 17:00:03 -08:00
Cameron
b5032c2477 Issue #3695 e_admin addon - list mode with custom methods fixed. 2019-03-04 12:41:10 -08:00
Cameron
4e07b87e37 Fixes #3695 Added e_admin interface and method to load data for 'list' view of admin-ui. (subject to change) 2019-03-03 12:33:20 -08:00
Cameron
30c5553dbd Bootstrap 4 fixes. 2019-03-02 07:47:37 -08:00
Cameron
a457863c56 Issue #3202 uc_select() was not respecting default value. 2019-03-01 11:12:54 -08:00
Tijn Kuyper
a6476e680e userpicker() - make sure the $options parm is also passed along 2019-02-28 16:41:46 +01:00
Cameron
1dbc90143f Case cleanup toHtml() should be toHTML() 2019-02-26 12:22:36 -08:00
Tijn Kuyper
beb1734681 Tweak bootstrap check
Allow for BS4 as well
2019-02-26 17:02:46 +01:00
Cameron
91ff23ea5f Fixes #2163 - Set the Media-Manager default category to _common_image 2019-02-24 13:01:45 -08:00
Cameron
3e264b23c7 Admin-ui: Made column sorting more obvious. Added carets when in use. 2019-02-05 15:48:23 -08:00
Cameron
6c3001233a Fixes #3644 - type='country' displays 'Array()' when empty value is rendered. 2019-01-31 13:30:09 -08:00
Achim Ennenbach
9323d0e6a4 fixes #3647:
Added the $parms var to the country() method call (in renderElement())
2019-01-30 18:39:07 +01:00
Cameron
96a4dc3683 Issue #3616 Tweaked 2019-01-13 12:40:25 -08:00
Cameron
0df3fa4672 Admin-UI: Improved rendering of required fields. 2019-01-13 12:30:17 -08:00
Jimako
74a2f08879 avatar picker - possibility to change class for display avatar before picking
- needed in {SIGNUP_IMAGES}
2018-12-19 10:48:24 +01:00
Nick Liu
003cf4ff09 Sorting for "templates" type e_form::renderElement()
The output from e107::getFile()->get_files() is now sorted in
e_form::renderElement() for consistent output.

Fixes: #3533
2018-11-01 11:11:25 -05:00
Cameron
69eb95c63c Admin-ui: modalCaption option added for Edit button when target = 'modal' 2018-10-18 12:46:29 -07:00
Cameron
6c2c2c7f13 Issue #3501 - Media-Manager icon import issue. 2018-10-16 11:50:16 -07:00
Cameron
5db55ff20a Admin-UI: Fix for type userclasses 2018-10-02 17:00:38 -07:00
Cameron
f99e2fbca0 Merge pull request #3471 from Deltik/fix-3437
Matching scope for e_form::$_inline_token
2018-09-27 14:32:44 -07:00
Cameron
1f4bfa256c Fix for custom class on select 2018-09-27 12:02:35 -07:00
Nick Liu
8c7b61fb29 Matching scope for e_form::_inline_token
Should be private to match private function inlineToken()
2018-09-27 11:34:10 -05:00
Nick Liu
a374886425 Fixes #3437 – e_form::inlineToken() performance
This "inline token" is generated 30 times in my test, but it's the same
session_id() being hashed. This is wasteful and can be mitigated in two
ways:

* Reducing the time cost like so: return password_hash(session_id(),
PASSWORD_DEFAULT, ['cost' => 04]);
* Storing the hash as an instance variable the first time it's
generated

This commit applies both mitigations.
2018-09-23 15:32:57 -05:00
Cameron
5235b4fcaf Fix for database verify charset function. 2018-09-12 11:46:23 -07:00
Cameron
7340ea8377 Media-Manager icon picker preview size fix. 2018-09-08 11:53:40 -07:00
Cameron
cdcd10e7f5 Fix for blog-calendar links not in the current year. 2018-09-04 17:10:03 -07:00
Cameron
00e2663162 Added token to x-editable 2018-09-04 15:15:50 -07:00
Cameron
7daded6ac5 Media-Picker spacer fix. 2018-09-03 14:35:03 -07:00
Cameron
e392fd5740 Fix for drag-n-drop upload. 2018-08-26 15:27:59 -07:00
Cameron
3d031895ca Dropzone LAN added. Catch theme shortcode when set in sitelinks but missing and add a debug message. 2018-08-24 16:04:12 -07:00
Cameron
ea4affeab1 Media-Manager news now includes common images/video etc. 2018-08-22 18:09:46 -07:00
Cameron
4c41fb6ea2 Issue #3392 MediaPicker in use by default and "Clear" button added. 2018-08-22 17:20:49 -07:00
Cameron
1754887672 MediaManager Fixes. 2018-08-16 19:02:02 -07:00
Cameron
a2e082c75d MediaPicker Icon fix. 2018-08-13 14:44:55 -07:00
Cameron
acfaf2df8e MediaPicker fixes. 2018-08-11 14:06:21 -07:00
Cameron
604cda1f83 Admin-ui: Prevent 'options' header column from displaying when not found in $fields array. 2018-08-07 19:39:47 -07:00
Cameron
07a2efbdcf Fixes #1732 Image preview on download. 2018-08-06 13:07:13 -07:00
Achim Ennenbach
e692eecebe choose wysiwyg editor
Now it is possible to have TinyMCE in the backend and SimpleMDE on the forum pages.
wysiwyg() got a new parameter $returnEditor to return the name of the editor.
wysiwyg() now checks if the choosen editor is installed.
wysiwyg() setting a value is not systemwide anymore (static var instead of registry)
Use the bbarea() $options array to define the editor to use e.g. $options['wysiwyg'] = 'tinymce4';
Updated forum_admin.php to support SimpleMDE.
Updated tinymce4/e_footer.php to support the new return value (editor name)
2018-07-29 15:11:40 +02:00
Cameron
e5af746153 Closes #3330 #3318 2018-07-28 13:41:44 -07:00
Cameron
37017652cc Merge pull request #3318 from SimSync/forum_editor
choose editor in forum and quick reply
2018-07-28 13:07:36 -07:00
Cameron
8124b683c5 MediaPicker icons tab. 2018-07-27 17:39:44 -07:00
Cameron
bbb6162181 MediaPicker Allow drag-n-drop to replace existing image. 2018-07-27 12:48:45 -07:00
Cameron
96037d5ac9 Issue #3276 Fix encoding on '+' in media categories. Mediapicker fixes. Media class cleanup. 2018-07-26 20:14:42 -07:00
Cameron
f1329535a5 MediaPicker drag-n-drop upload. 2018-07-26 19:13:27 -07:00
Cameron
baf570071e mediapicker() mediaselector-preview-empty css class added. 2018-07-26 14:06:45 -07:00
Cameron
557dea1f0e Media-picker work. Add the following to e107_config.php to enable and test. define('e_DEBUG_MEDIAPICKER', true); 2018-07-25 20:28:30 -07:00
Achim Ennenbach
26022e4507 choose editor in forum and quick reply
New prefs for forum: editor & quickreply
editor makes it possible to choose between bbcode or tinymce (if installed and html enabled)
quickreply gives the option to choose between the standard textarea or the choosen editor (from pref editor)
2018-07-25 22:48:14 +02:00
Achim Ennenbach
774e51ff13 fixes #3249 uc_select() didn't recognize comma separated values
added a check for such values
2018-07-21 10:20:40 +02:00
Cameron
cd8ddfd54a Issue #3200 - Media-Manager Media-picker work-in-progress 2018-07-19 12:43:04 -07:00