phpmyadmin/libraries/plugins/auth/AuthenticationHTTP.class.php

71 lines
1.2 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* HTTP Authentication plugin for phpMyAdmin
*
* @package PhpMyAdmin-Authentication
* @subpackage Config
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/* Get the authentication interface */
require_once "libraries/plugins/AuthenticationPlugin.class.php";
/**
* Handles the HTTP authentication method
*
* @package PhpMyAdmin-Authentication
*/
class AuthenticationHTTP extends AuthenticationPlugin
{
/**
*
*
* @return void
*/
public function auth()
{
}
/**
*
*
* @return void
*/
public function authCheck()
{
}
/**
*
*
* @return void
*/
public function authSetUser()
{
}
/**
*
*
* @return void
*/
public function authFails()
{
}
/**
* This method is called when any PluginManager to which the observer
* is attached calls PluginManager::notify()
*
* @param SplSubject $subject The PluginManager notifying the observer
* of an update.
*
* @return void
*/
public function update (SplSubject $subject)
{
}
}