File: IPlugin.php

package info (click to toggle)
php-raintpl 3.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 204 kB
  • sloc: php: 1,035; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace Rain\Tpl;

/**
 * Interface for a plugin classes for rain template engine.
 * Plugins should at first declare implemented hooks during registration.
 *
 * Example implementation:
 * <code>
 * public function declare_hooks() {
 *   return array('before_parse', 'after_parse' => 'custom_method');
 * }
 * </code>
 *
 * Template will then call the registered method with a context object as parameter.
 * Context object implements \ArrayAccess.
 * It's properties depends on hook api.
 *
 * Method can modify some properties. No return value is expected.
 */
interface IPlugin
{
    /**
     * Returns a list of hooks that are implemented by the plugin.
     * This should be an array containing:
     * - a key/value pair where key is hook name and value is implementing method,
     * - a value only when hook has same name as method.
     */
    public function declareHooks();

    /**
     * Sets plugin options.
     *
     * @var array
     */
    public function setOptions($options);
}