diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2012-12-23 15:29:16 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2012-12-23 15:29:16 +0400 |
| commit | 5a0e03923f47bc1140fd71b4899cd1e35fd59006 (patch) | |
| tree | 6ece4cb89259ac78f789d8ba630d328629ecbd01 /classes/plugin.php | |
| parent | 7252abe3ea5703b3cf75a3745e560499cfde500a (diff) | |
add and check plugin base class
Diffstat (limited to 'classes/plugin.php')
| -rw-r--r-- | classes/plugin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/classes/plugin.php b/classes/plugin.php new file mode 100644 index 000000000..59cb64f53 --- /dev/null +++ b/classes/plugin.php @@ -0,0 +1,11 @@ +<?php +class Plugin { + private $link; + private $host; + + function __construct($host) { + $this->link = $host->get_link(); + $this->host = $host; + } +} +?> |