wikimedia/mediawiki-core

View on GitHub
includes/changetags/Hook/ChangeTagCanCreateHook.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace MediaWiki\ChangeTags\Hook;

use MediaWiki\Status\Status;
use MediaWiki\User\User;

/**
 * This is a hook handler interface, see docs/Hooks.md.
 * Use the hook name "ChangeTagCanCreate" to register handlers implementing this interface.
 *
 * @stable to implement
 * @ingroup Hooks
 */
interface ChangeTagCanCreateHook {
    /**
     * Use this hook to tell whether a change tag should be able to be created
     * from the UI (Special:Tags) or via the API. You could use this hook if you want
     * to reserve a specific "namespace" of tags, or something similar.
     *
     * @since 1.35
     *
     * @param string $tag Name of the tag
     * @param User|null $user User initiating the action
     * @param Status &$status Add your errors using `$status->fatal()` or warnings
     *   using `$status->warning()`. Errors and warnings will be relayed to the user.
     *   If you set an error, the user will be unable to create the tag.
     * @return bool|void True or no return value to continue or false to abort
     */
    public function onChangeTagCanCreate( $tag, $user, &$status );
}