It just popped into my mind.
Right here: https://api.backdropcms.org/api/backdrop/core%21includes%21cache.inc/fun...
static $cache_objects;
if (!isset($cache_objects[$bin])) {
$class = settings_get('cache_class_' . $bin);
if (!isset($class)) {
$class = settings_get('cache_default_class', 'BackdropDatabaseCache');
}
We are using settings_get function to properly direct cache features based on settings.php
But it is really old way and we have better solution - JSON settings!
So how about to keep this data in config('cache.settings') ?
This way cache settings could be easy transferred between different websites.
Also we can ADD admin/settings/cache page and not experienced users will be able to select different (available) methods for different bins.
Related: #716 #1413
Recent comments
Ubercart is an excellent solution, I'm using it on a few website. Out of the 170+ websites I look after only a handful of them need e-commerce in any shape, way or form, so your comment isn't really...
commerce support
Ubercart is a very complete solution that is available on Backdrop CMS. It also has Stripe, PayPal support. Also check out this forum post that lists several other solutions: https://forum....
commerce support
stpaultimĀ Thank you. I'm working my way through all this, extending my understanding.
Create content type programaticaly