1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-30 01:49:58 +02:00

2594 Commits

Author SHA1 Message Date
Ryan Cramer
a3d92035f1 PR #189 - Add $config->AdminThemeUikit settings array
Co-authored-by: BernhardBaumrock <office@baumrock.com>
2021-05-27 13:22:43 -04:00
Ryan Cramer
3522b89414 PR #189 - Update AdminThemeUikit to support custom LESS files. Authored by @BernhardBaumrock with some additions by @ryancramerdesign
Co-authored-by: BernhardBaumrock <office@baumrock.com>
2021-05-27 13:17:56 -04:00
BernhardBaumrock
58ac07e9a9 PR #189 - Add uikit-pw/ dir to AdminThemeUikit with all PW styles, plus add reno and new rock style .less files. This separates PW Uikit files (in uikit-pw) from native Uikit files (in uikit/). 2021-05-27 13:11:11 -04:00
BernhardBaumrock
a03c1dae81 PR #189 - Upgrade Uikit version to 3.6.22 for AdminThemeUikit updates 2021-05-27 13:05:20 -04:00
Ryan Cramer
c93423365f Maybe an unlikely combination but, this fixes issue when Page field has PageArray selected as value with PageListSelect (single) selected as input. PageArray value would continue to grow as new pages selected rather than be replaced by 1 page. 2021-05-23 09:53:42 -04:00
Ryan Cramer
1131b80163 Update InputfieldSelector to filter selectable templates by initValue selector 2021-05-22 09:07:50 -04:00
Ryan Cramer
71a2e38f9e A couple of minor optimizations for queries in debug logs 2021-05-21 14:34:34 -04:00
pine3ree
d4db88ec7b Add PR #188 - add FieldtypeDecimal as allowed change type for integer and float 2021-05-20 08:24:28 -04:00
Ryan Cramer
e6a79dbbdf Make Fields::getTags() and Templates::getTags() hookable per @outflux3 processwire/processwire-issues#1369 2021-05-19 09:32:14 -04:00
Ryan Cramer
dd4926a9a1 Add support for InputfieldCKEditor extra plugin directories, feature requested in PR #165 but with different implementation from the PR so that it doesn't require hooks and autoload modules.
Co-authored-by: BernhardBaumrock <office@baumrock.com>
2021-05-19 09:05:09 -04:00
Ryan Cramer
ff0a66821d Optimizations to WireArray::get(), plus add support for get('a|b|c') where it returns value for first matching key, consistently with WireData. This also provides a solution for PR #109 @bernhardbaumrock 2021-05-19 08:57:13 -04:00
Ryan Cramer
335ad1cefe Add ConfigModule interface as alternative to ConfigurableModule interface for modules that want to maintain non-interactive configuration data 2021-05-18 12:49:36 -04:00
Ryan Cramer
e028d9f7b6 Bump version to 3.0.178 2021-05-14 15:27:45 -04:00
gerritvanaaken
7ac6b6e9e3 Add PR #160 - enable file metadata in repeater context 2021-05-14 09:23:08 -04:00
mirzadabeer
4d5950f5fe Add PR #100 - Replace unnecessary in_array() call in /wire/core/admin.php 2021-05-13 10:48:26 -04:00
Ryan Cramer
6004066bd5 Add PR #74 which adds a JS event for language tab clicks
Co-authored-by: rdunk <rupert@rupertdunk.com>
2021-05-13 10:35:59 -04:00
Ryan Cramer
5a5d4e5830 Add support for scheme and host to be manually specified in $page->url() and $page->httpUrl() methods in $options array argument. This is related to the request in PR #116 2021-05-13 09:56:48 -04:00
rolandtoth
108ee2384a Add PR #38 which adds an edit-link-text feature to ProcessPageEditLink, via @rolandtoth 2021-05-12 15:47:39 -04:00
Ryan Cramer
79b952753c Add PR #106 - Add “since” versions for $files API var find() and includeOnce() methods
Co-authored-by: happy-kaseem <kaseem@meisterkonze.ch>
Co-authored-by: matjazpotocnik <matjaz.potocnik@um.si>
2021-05-12 14:58:11 -04:00
Ryan Cramer
89d52edaa6 Add PR #71 via @rolandtoth - Improvements to InputfieldIcon
Co-authored-by: rolandtoth <tproli@gmail.com>
2021-05-12 13:59:58 -04:00
lostkobrakai
2c8cce1d47 Add PR #77 - Make FieldtypeOptions detect single value usage in markupValue() method 2021-05-12 10:35:44 -04:00
Ryan Cramer
24578306b7 Add feature requested in PR #136 - Allow modification of CacheFile string before output
Co-authored-by: ethanbeyer <ethan.beyer@gmail.com>
2021-05-12 09:43:57 -04:00
Ryan Cramer
143ae7535b Add support for multi-dimensional arrays in $input with a $config->wireInputArrayDepth setting. This was requested in prior feature requests and in PR #161 but ended up writing it in a different way than the PR to allow for control over the allowed max dimension and consistency with multidimensional arrays in $_GET or $_POST. To enable multi-dimensional array support add $config->wireInputArrayDepth = 2; to /site/config.php and use a value of 2 (or higher) to indicate the number of dimensions you want to support.
Co-authored-by: porl <porl42@gmail.com>
2021-05-12 09:05:28 -04:00
jmartsch
e7b71d796f Add PR #185 - add margin between InputfieldImage description and custom fields 2021-05-12 06:46:01 -04:00
BernhardBaumrock
2911a16604 Add PR #169 which adds alternate behavior option for Inputfield labels as open/close toggles (currently AdminThemeUikit setting) 2021-05-11 09:58:25 -04:00
Ryan Cramer
32150bd4b7 Add PR #77 from @BernhardBaumrock which makes AdminThemeUikit::getUikitCSS() method hookable and adds an option for using uk-svg attribute on custom logo.
Co-authored-by: BernhardBaumrock <office@baumrock.com>
2021-05-11 08:29:15 -04:00
pine3ree
d29ed3eb96 Add PR #187 - add cookie SameSite support and settings (session and other cookies) 2021-05-10 14:46:37 -04:00
Ryan Cramer
ddce5e5cda Fix issue processwire/processwire-issues#1379 2021-05-10 08:45:04 -04:00
Ryan Cramer
422aeff7ac Fix issue processwire/processwire-issues#1380 2021-05-10 08:41:21 -04:00
Ryan Cramer
26f31ce81b Fix issue processwire/processwire-issues#1381 2021-05-10 08:37:07 -04:00
jmartsch
a7c85f11d9 Add PR #125 - make AdminThemeFramework::getPrimaryNavArray hookable 2021-05-07 15:23:57 -04:00
Ryan Cramer
437df97435 Add PR #151 - Show Textdomain in Language Translator
Co-authored-by: tiefenb <markus.tiefenbacher@gmail.com>
2021-05-07 15:06:51 -04:00
Ryan Cramer
1a71b77010 Add PR #163 small fixes in PWPNG class
Co-authored-by: horst-n <info@nogajski.de>
2021-05-07 14:57:29 -04:00
yuters
b7d8ae37e3 Add PR #183 - Make ProcessLanguageTranslator.module translatable 2021-05-07 14:44:02 -04:00
Ryan Cramer
3bcb8416ca Add @trk PR #184 which makes it use the inputWrapTag option in the renderFormNormal() method
Co-authored-by: trk <iskender@altivebir.com>
2021-05-07 14:38:31 -04:00
jmartsch
451455e035 Add PR #133 - use better non-technical message for SelectableOptionConfig 2021-05-07 14:30:02 -04:00
teppokoivula
1bd35d212a Add PR #146 - Make it possible to activate inline CKEditor instances via keyboard 2021-05-07 14:20:54 -04:00
derixithy
d8a5352ab9 Add PR #176 to fix typo in wire/config.php 2021-05-07 14:08:53 -04:00
tiefenb
9ed333c187 Add PR #177 for page.meta documentation update 2021-05-07 14:00:53 -04:00
teppokoivula
6ec82a965d Add @teppokoivula PR #20 which adds a delete-all feature to PagePathHistory module 2021-05-07 13:42:21 -04:00
Notanotherdotcom
c8efbdfe4b Add PR #113 for page ID supported as page name format 2021-05-07 13:16:27 -04:00
Ryan Cramer
2190a6ef37 Add PR #134 which expands CURL options that can be specified in WireHttp $options array. Some of the PR was already added for the sendCURL in a prior commit, so this commit adds the remaining part in downloadCURL(). Slightly modified to read $options['curl']['setopt'] rather than $options['curl'], for compatibilty with what's already in sendCURL().
Co-authored-by: chriswthomson <chris.thomson@nbcommunication.com>
2021-05-07 12:57:28 -04:00
Ryan Cramer
f290da2a7f Add a couple of WireTextTools methods for later use 2021-05-07 10:33:07 -04:00
Ryan Cramer
6d285b0784 Fix issue processwire/processwire-issues#1288 2021-05-07 08:33:25 -04:00
Ryan Cramer
3485aa8763 Update to add support for user-view-[role] permissions for cases where people may be implementing a user.php (or related) template file @adrianbj 2021-05-06 10:07:47 -04:00
Ryan Cramer
4ce75aed1a Minor updates to PagePermissions.module 2021-05-05 14:07:38 -04:00
Ryan Cramer
644f0fb3fd Improvements to FieldtypeMulti::savePageFieldRows method 2021-05-05 13:57:11 -04:00
Ryan Cramer
8d9a66fc38 Minor optimizations to Wire class 2021-05-05 13:55:59 -04:00
Ryan Cramer
1906d94a9c Improvements and clarifications with the WireTempDir class 2021-05-05 13:55:02 -04:00
Ryan Cramer
6cf998c3a0 Improvements to WireFileTools, lots with error message handling and logging, addition of a renameCopy() method, and other minor improvements. 2021-05-05 13:53:07 -04:00