Mybb 1.4.6
[ class tree: Mybb 1.4.6 ] [ index: Mybb 1.4.6 ] [ all elements ]

Procedural File: akismet.php

Source Location: /inc/plugins/akismet.php



Classes:

Akismet
This class is Copyright 2009 Ryan Gordon (Tikitiki)


Page Details:



Tags:

filesource:  Source Code for this file








akismet_action_handler [line 728]

void akismet_action_handler( &$action)



Parameters

   &$action  
[ Top ]



akismet_activate [line 236]

void akismet_activate( )



[ Top ]



akismet_admin [line 767]

void akismet_admin( )



[ Top ]



akismet_admin_nav [line 733]

void akismet_admin_nav( &$sub_menu)



Parameters

   &$sub_menu  
[ Top ]



akismet_admin_permissions [line 753]

void akismet_admin_permissions( &$admin_permissions)



Parameters

   &$admin_permissions  
[ Top ]



akismet_deactivate [line 263]

void akismet_deactivate( )



[ Top ]



akismet_fake_draft [line 604]

void akismet_fake_draft( &$post)



Parameters

   &$post  
[ Top ]



akismet_info [line 48]

void akismet_info( )

MyBB 1.4 Copyright © 2008 MyBB Group, All Rights Reserved

Website: http://www.mybboard.net License: http://www.mybboard.net/about/license

$Id: akismet.php 4343 2009-04-09 05:36:29Z Tikitiki $




[ Top ]



akismet_install [line 120]

void akismet_install( )

ADDITIONAL PLUGIN INSTALL/UNINSTALL ROUTINES

_install(): Called whenever a plugin is installed by clicking the "Install" button in the plugin manager. If no install routine exists, the install button is not shown and it assumed any work will be performed in the _activate() routine.

function hello_install() { }

_is_installed(): Called on the plugin management page to establish if a plugin is already installed or not. This should return TRUE if the plugin is installed (by checking tables, fields etc) or FALSE if the plugin is not installed.

function hello_is_installed() { global $db; if($db->table_exists("hello_world")) { return true; } return false; }

_uninstall(): Called whenever a plugin is to be uninstalled. This should remove ALL traces of the plugin from the installation (tables etc). If it does not exist, uninstall button is not shown.

function hello_uninstall() { }

_activate(): Called whenever a plugin is activated via the Admin CP. This should essentially make a plugin "visible" by adding templates/template changes, language changes etc.

function hello_activate() { }

_deactivate(): Called whenever a plugin is deactivated. This should essentially "hide" the plugin from view by removing templates/template changes etc. It should not, however, remove any information such as tables, fields etc - that should be handled by an _uninstall routine. When a plugin is uninstalled, this routine will also be called before _uninstall() if the plugin is active.

function hello_deactivate() { }




[ Top ]



akismet_is_installed [line 224]

void akismet_is_installed( )



[ Top ]



akismet_key [line 299]

void akismet_key( )



[ Top ]



akismet_moderation_start [line 358]

void akismet_moderation_start( )



[ Top ]



akismet_postbit [line 561]

void akismet_postbit( &$post)



Parameters

   &$post  
[ Top ]



akismet_redirect_forum [line 714]

void akismet_redirect_forum( )



[ Top ]



akismet_redirect_thread [line 699]

void akismet_redirect_thread( )



[ Top ]



akismet_show_confirm_page [line 313]

void akismet_show_confirm_page( )



[ Top ]



akismet_uninstall [line 277]

void akismet_uninstall( )



[ Top ]



akismet_verify [line 589]

void akismet_verify( &$post)



Parameters

   &$post  
[ Top ]



Documentation generated on Wed, 27 May 2009 13:34:25 -0700 by phpDocumentor 1.4.1