diff options
author | Nils Adermann <naderman@naderman.de> | 2012-03-31 18:16:55 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2012-03-31 18:16:55 +0200 |
commit | 7e2f16aafa47f8db51a12a293b0616cb75b4d12f (patch) | |
tree | 3e5e62baab0038d4895eaa9c7a47dadbc3eb4e84 /phpBB/docs | |
parent | 17a7b570747a91321903e30f3c0dd6f8246c0047 (diff) | |
parent | 9236dd4c471a6f7655bd00ae422a13013a400ac4 (diff) | |
download | forums-7e2f16aafa47f8db51a12a293b0616cb75b4d12f.tar forums-7e2f16aafa47f8db51a12a293b0616cb75b4d12f.tar.gz forums-7e2f16aafa47f8db51a12a293b0616cb75b4d12f.tar.bz2 forums-7e2f16aafa47f8db51a12a293b0616cb75b4d12f.tar.xz forums-7e2f16aafa47f8db51a12a293b0616cb75b4d12f.zip |
Merge remote-tracking branch 'github-igorw/feature/class-prefix' into develop
* github-igorw/feature/class-prefix:
[feature/class-prefix] Rename auth => phpbb_auth
[feature/class-prefix] Rename user and session to phpbb_*
Diffstat (limited to 'phpBB/docs')
-rw-r--r-- | phpBB/docs/auth_api.html | 2 | ||||
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 2 | ||||
-rw-r--r-- | phpBB/docs/hook_system.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html index 40a63eaa9d..2302140030 100644 --- a/phpBB/docs/auth_api.html +++ b/phpBB/docs/auth_api.html @@ -86,7 +86,7 @@ <p>To use any methods contained with the <code>auth</code> class it first needs to be instantiated. This is best achieved early in the execution of the script in the following manner:</p> <div class="codebox"><pre> -$auth = new auth(); +$auth = new phpbb_auth(); </pre></div> <p>Once an instance of the class has been created you are free to call the various methods it contains. Please note that should you wish to use the <code>auth_admin</code> methods you will need to instantiate this separately but in the same way.</p> diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index e6dfe579e9..6d428916c7 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -248,7 +248,7 @@ PHPBB_QA (Set board to QA-Mode, which means the updater also c <p>If the <code>PHPBB_USE_BOARD_URL_PATH</code> constant is set to true, phpBB uses generate_board_url() (this will return the boards url with the script path included) on all instances where web-accessible images are loaded. The exact locations are:</p> <ul> - <li>/includes/session.php - user::img()</li> + <li>/includes/user.php - phpbb_user::img()</li> <li>/includes/functions_content.php - smiley_text()</li> </ul> diff --git a/phpBB/docs/hook_system.html b/phpBB/docs/hook_system.html index 1ac45e0cb5..6dd84bfc23 100644 --- a/phpBB/docs/hook_system.html +++ b/phpBB/docs/hook_system.html @@ -368,7 +368,7 @@ a:active { color: #368AD2; } <p>In phpBB3 there are four functions you are able to hook into with your custom functions:</p> -<p><code>phpbb_user_session_handler();</code> which is called within user::setup after the session and the user object is correctly initialized.<br /> +<p><code>phpbb_user_session_handler();</code> which is called within phpbb_user::setup after the session and the user object is correctly initialized.<br /> <code>append_sid($url, $params = false, $is_amp = true, $session_id = false);</code> which is called for building urls (appending the session id)<br /> <code>$template->display($handle, $template);</code> which is called directly before outputting the (not-yet-compiled) template.<br /> <code>exit_handler();</code> which is called at the very end of phpBB3's execution.</p> @@ -388,7 +388,7 @@ PHPBB_USE_BOARD_URL_PATH (use generate_board_url() for image paths instead of $p <p>If the <code>PHPBB_USE_BOARD_URL_PATH</code> constant is set to true, phpBB uses generate_board_url() (this will return the boards url with the script path included) on all instances where web-accessible images are loaded. The exact locations are:</p> <ul> - <li>/includes/session.php - user::img()</li> + <li>/includes/user.php - phpbb_user::img()</li> <li>/includes/functions_content.php - smiley_text()</li> </ul> |