From 19512b2595cef521099a95b1ab8c24dbe51c5b2f Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 14 Sep 2013 14:04:48 +0200 Subject: [feature/passwords] Rename "crypto" files to "passwords" files PHPBB3-11610 --- phpBB/phpbb/passwords/driver/base.php | 68 +++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 phpBB/phpbb/passwords/driver/base.php (limited to 'phpBB/phpbb/passwords/driver/base.php') diff --git a/phpBB/phpbb/passwords/driver/base.php b/phpBB/phpbb/passwords/driver/base.php new file mode 100644 index 0000000000..67cbe4decf --- /dev/null +++ b/phpBB/phpbb/passwords/driver/base.php @@ -0,0 +1,68 @@ +config = $config; + $this->helper = new phpbb_passwords_driver_helper($this); + } + + /** + * @inheritdoc + */ + public function is_supported() + { + return true; + } + + /** + * @inheritdoc + */ + public function get_name() + { + return $this->name; + } + + /** + * Set driver name + * + * @param string $name Driver name + */ + public function set_name($name) + { + $this->name = $name; + } +} -- cgit v1.2.1