source: branches/beta/html/test/adachi/LLReader/LLReader/Plugin.php @ 14676

Revision 14676, 297 bytes checked in by adati, 17 years ago (diff)

1.4.0a-betaのマージ

Line 
1<?php
2
3abstract class LLReader_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.