Some more phpdoc fixes (adding packages, ignoring some symbols,...).
This commit is contained in:
@@ -13,6 +13,9 @@ if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Swekey authentication functions.
|
||||
*/
|
||||
require './libraries/auth/swekey/swekey.auth.lib.php';
|
||||
|
||||
if (function_exists('mcrypt_encrypt')) {
|
||||
|
@@ -1,3 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Swekey
|
||||
*/
|
||||
?>
|
||||
|
||||
<script>
|
||||
|
||||
|
@@ -3,6 +3,9 @@
|
||||
* @package Swekey
|
||||
*/
|
||||
|
||||
/**
|
||||
* Checks Swekey authentication.
|
||||
*/
|
||||
function Swekey_auth_check()
|
||||
{
|
||||
global $cfg;
|
||||
@@ -57,6 +60,9 @@ function Swekey_auth_check()
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Handle Swekey authentication error.
|
||||
*/
|
||||
function Swekey_auth_error()
|
||||
{
|
||||
if (! isset($_SESSION['SWEKEY']))
|
||||
@@ -200,6 +206,9 @@ function Swekey_auth_error()
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Perform login using Swekey.
|
||||
*/
|
||||
function Swekey_login($input_name, $input_go)
|
||||
{
|
||||
$swekeyErr = Swekey_auth_error();
|
||||
|
@@ -3,6 +3,7 @@
|
||||
/**
|
||||
* Interface to the classic MySQL extension
|
||||
*
|
||||
* @package phpMyAdmin-DBI-MySQL
|
||||
* @version $Id$
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
@@ -3,6 +3,7 @@
|
||||
/**
|
||||
* Interface to the improved MySQL extension (MySQLi)
|
||||
*
|
||||
* @package phpMyAdmin-DBI-MySQLi
|
||||
* @version $Id$
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
@@ -13,6 +13,7 @@
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @version $Id$
|
||||
* @package phpMyAdmin-String-MB
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@@ -13,6 +13,7 @@
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @version $Id$
|
||||
* @package phpMyAdmin-String-Native
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@@ -13,6 +13,7 @@
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @version $Id$
|
||||
* @package phpMyAdmin-StringType-CType
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@@ -13,6 +13,7 @@
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @version $Id$
|
||||
* @package phpMyAdmin-StringType-Native
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@@ -6,9 +6,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Gets core libraries and defines some variables
|
||||
* @ignore
|
||||
*/
|
||||
define('PMA_MINIMUM_COMMON', true);
|
||||
/**
|
||||
* Gets core libraries and defines some variables
|
||||
*/
|
||||
require_once './libraries/common.inc.php';
|
||||
|
||||
|
||||
|
@@ -6,10 +6,16 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
define('PMA_MINIMUM_COMMON', true);
|
||||
/**
|
||||
* Gets core libraries and defines some variables
|
||||
*/
|
||||
require_once './libraries/common.inc.php';
|
||||
/**
|
||||
* ZIP file handler.
|
||||
*/
|
||||
require_once './libraries/zip.lib.php';
|
||||
|
||||
// ini file
|
||||
|
Reference in New Issue
Block a user