PHP Classes

File: tests/sample-app/components/wp-plugin-rating/config/set-hooks.php

Recommend this page to a friend!
  Classes of Josantonius   wp-plugin-rating   tests/sample-app/components/wp-plugin-rating/config/set-hooks.php   Download  
File: tests/sample-app/components/wp-plugin-rating/config/set-hooks.php
Role: Example script
Content type: text/plain
Description: Example script
Class: wp-plugin-rating
Show ratings of WordPress plugins
Author: By
Last change:
Date: 6 years ago
Size: 664 bytes
 

Contents

Class file image Download
<?php
/**
 * WP Plugin Rating · Show plugin rating in WordPress administration pages.
 *
 * @author Josantonius <hello@josantonius.com>
 * @package eliasis-framework\wp-plugin-rating
 * @copyright 2017 - 2018 (c) Josantonius - WP Plugin Rating
 * @license https://opensource.org/licenses/MIT - The MIT License (MIT)
 * @link https://github.com/eliasis-framework/wp-plugin-rating.git
 * @since 1.0.0
 */

use Eliasis\Complement\Type\Component;

$namespace = Component::WP_Plugin_Rating()->getOption(
   
'namespaces',
   
'controller'
);

$class = $namespace . 'Launcher';

return [
   
'hooks' => [
        [
'component-load', [ $class, 'init' ], 8, 0 ],
    ],
];