source: branches/dev/html/test/adachi/PLLagger/PLLagger/Plugin.php @ 14681

Revision 14681, 297 bytes checked in by adati, 17 years ago (diff)
Line 
1<?php
2
3abstract class PLLagger_Plugin {
4    protected $config;
5   
6    public function __construct ($llr, $config) {
7        $this->config = $config;
8    }
9   
10    abstract public function execute ($llr);
11   
12    protected function get_config () {
13        return $this->config;
14    }
15   
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.