Download the PHP package clarkwinkelmann/flarum-local-extenders without Composer
On this page you can find all versions of the php package clarkwinkelmann/flarum-local-extenders. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download clarkwinkelmann/flarum-local-extenders
More information about clarkwinkelmann/flarum-local-extenders
Files in clarkwinkelmann/flarum-local-extenders
Package flarum-local-extenders
Short Description Useful extenders for your local extend.php
License MIT
Informations about the package flarum-local-extenders
Local extenders for Flarum
This package provides useful extenders for your local Flarum extend.php
This is not an actual extension, and will not appear in your Flarum admin panel.
Installation
composer require clarkwinkelmann/flarum-local-extenders
Configuration
The extenders can be used by adding them in the array of extend.php
at the root of the Flarum install.
Below you will find a summary of the features along with examples. See the PHPDoc blocks in the source code for the full documentation and warnings.
Alter extension list in admin
Lets you customize how the extension list is rendered in the admin panel.
"Hide extension" and "Hide version" effectively hide the data, but it can still be guessed when the extension is enabled.
All other options are just cosmetic and just visually change the look without hiding the original values or features.
It's always possible to enable/disable an extension or edit its settings via the API.
Example:
Follow after start
Adds a new user preference that controls a new feature "Follow discussions that I start".
Works exactly like the "Follow discussions that I reply to" feature bundled with Subscriptions, but for the discussion start.
Example:
It's enabled by default. To set it disabled by default, pass a parameter to the constructor:
Frontend without modules
Similar to Flarum's Frontend extender for js & css, but with a few differences:
- Doesn't handle javascript files as modules, allowing custom code that isn't designed for a module loader
- Allow adding multiple javascript files with a single extender
Example:
Hide extension version in admin
Removes the extension version of all extensions from the admin panel's data payload.
Example:
Hide Flarum version in admin
Removes the Flarum version from the admin panel's data payload.
Example:
Hide system info in admin
Removes the PHP and MySQL version from the admin panel's data payload.
Example:
Override settings
Set some key-value pairs to be returned by SettingsRepositoryInterface::get(). Even if another value is set via the admin panel, the values defined via this extender will take priority.
Example:
Hide some keys from the SettingsRepositoryInterface::all() payload. This only hides values coming from the database as values overridden via this extender are never returned by ::all() anyway.
Example:
The overridden values can also be set via an associative array passed to the constructor:
Remember Me by default
Checks the "remember me" checkbox of the LogIn modal when it opens.
Example:
Replace admin component view with HTML
Replace an admin component's view method with the given HTML.
Example: