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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package flarum-local-extenders

Local extenders for Flarum

MIT license Latest Stable Version Total Downloads Donate

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:

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:

Links


All versions of flarum-local-extenders with dependencies

PHP Build Version
Package Version
Requires flarum/core Version ^1.2
ext-json Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package clarkwinkelmann/flarum-local-extenders contains the following files

Loading the files please wait ....