friendica/addon
Friendika e2f1540f25 events, continued. Also better regex matching accounting for empty elements 2011-06-07 22:13:07 -07:00
..
calc more consistency to plugins 2011-02-23 19:54:29 -08:00
convert units conversion app - needs some styling and code cleanup 2011-03-02 03:25:12 -08:00
facebook events, continued. Also better regex matching accounting for empty elements 2011-06-07 22:13:07 -07:00
fortunate first checkin fortunate plugin 2011-01-11 18:46:37 -08:00
java_upload removed java photo uploader from mainline. Photo uploaders are now plugins, but a single item upload is available by default. 2011-01-27 18:45:19 -08:00
js_upload string update, allow js_upload file selection text to be localised 2011-02-02 16:51:55 -08:00
ldapauth wrong file location 2010-12-27 15:02:23 -08:00
oembed put oembed settings into a .settings-block div for consistency 2011-05-30 23:12:39 -07:00
piwik added README files for the piwik, twitter and statusnet addon 2011-02-08 19:04:39 +01:00
poormancron move php path setting inside proc_run 2011-02-23 15:16:12 -08:00
randplace cleanup plugin and post settings 2011-02-23 18:24:29 -08:00
statusnet add attachments to FB posts, fix paren string in statusnet, do not insert attach div into post if no attachments 2011-05-26 06:46:55 -07:00
tictac string fixes 2011-02-24 13:29:19 -08:00
twitter resolved some local git quirks 2011-03-13 11:39:09 +01:00
widgets Add missing widgets_uninstall function to widgets plugin 2011-05-23 10:50:22 +02:00
LICENSE if sub-projects cannot mandate any terms to our license, we should not force any 2010-12-25 18:16:17 -08:00
README Add 'jot_tool' hook, plugins can add tool icons. 2011-01-26 16:17:28 +01:00

README

Friendika Addon/Plugin development

This is an early specification and hook details may be subject to change.

Please see the sample addon 'randplace' for a working example of using these features.


You must register plugins with the system in the .htconfig.php file.

$a->config['system']['addon'] = 'plugin1name, plugin2name, another_name';

Plugin names cannot contain spaces and are used as filenames.


Register your plugin hooks during installation. 

	register_hook($hookname, $file, $function);

	$hookname is a string and corresponds to a known Friendika hook
	$file is a pathname relative to the top-level Friendika directory.
		This *should* be 'addon/plugin_name/plugin_name.php' in most cases.
	$function is a string and is the name of the function which will be executed
		when the hook is called.


Your hook functions will be called with at least one and possibly two arguments

	function myhook_function(&$a, &$b) {


	}

If you wish to make changes to the calling data, you must declare them as 
reference variables (with '&') during function declaration. 

$a is the Friendika 'App' class - which contains a wealth of information
about the current state of Friendika, such as which module has been called,
configuration info, the page contents at the point the hook was invoked, profile
and user information, etc. It is recommeded you call this '$a' to match its usage 
elsewhere.

$b can be called anything you like. This is information which is specific to the hook 
currently being processed, and generally contains information that is being immediately
processed or acted on that you can use, display, or alter. Remember to declare it with 
'&' if you wish to alter it.


Current hooks:

'authenticate' - called when a user attempts to login. 
	$b is an array
		'username' => the supplied username
		'password' => the supplied password
		'authenticated' => set this to non-zero to authenticate the user.
		'user_record' => successful authentication must also return a valid user record from the database


'logged_in' - called after a user has successfully logged in.
	$b contains the $a->user array


'display_item' - called when formatting a post for display.
	$b is an array
		'item' => The item (array) details pulled from the database
		'output' => the (string) HTML representation of this item prior to adding it 
			to the page  

'post_local' - called when a status post or comment is entered on the local system
	$b is the item array of the information to be stored in the database
		{Please note: body contents are bbcode - not HTML)

'post_local_end' - called when a local status post or comment has been stored on the local system
	$b is the item array of the information which has just been stored in the database
		{Please note: body contents are bbcode - not HTML)


'post_remote' - called when receiving a post from another source. This may also be used
	to post local activity or system generated messages.
	$b is the item array of information to be stored in the database and the item
	body is bbcode.

'settings_form' - called when generating the HTML for the user Settings page
	$b is the (string) HTML of the settings page before the final '</form>' tag.

'settings_post' - called when the Settings pages are submitted.
	$b is the $_POST array

'plugin_settings' - called when generating the HTML for the addon settings page
	$b is the (string) HTML of the addon settings page before the final '</form>' tag.

'plugin_settings_post' - called when the Addon Settings pages are submitted.
	$b is the $_POST array

'profile_post' - called when posting a profile page.
	$b is the $_POST array

'profile_edit' - called prior to output of profile edit page
	$b is array
		'profile' => profile (array) record from the database
		'entry' => the (string) HTML of the generated entry

'profile_advanced' - called when the HTML is generated for the 'Advanced profile', 
	corresponding to the 'Profile' tab within a person's profile page.
	$b is the (string) HTML representation of the generated profile

'directory_item' - called from the Directory page when formatting an item for display
	$b is an array
		'contact' => contact (array) record for the person from the database
		'entry' => the (string) HTML of the generated entry 

'profile_sidebar_enter' - called prior to generating the sidebar "short" profile for a page
	$b is (array) the person's profile array

'profile_sidebar' - called when generating the sidebar "short" profile for a page
	$b is an array
		'profile' => profile (array) record for the person from the database
		'entry' => the (string) HTML of the generated entry

'contact_block_end' - called when formatting the block of contacts/friends on a 
	profile sidebar has completed
	$b is an array
		'contacts' => contact array of entries
		'output' => the (string) generated HTML of the contact block

'bbcode' - called during conversion of bbcode to html
	$b is (string) converted text

'html2bbcode' - called during conversion of html to bbcode (e.g. remote message posting)
	$b is (string) converted text


'page_header' - called after building the page navigation section
	$b is (string) HTML of nav region


'personal_xrd' - called prior to output of personal XRD file.
	$b is an array
		'user' => the user record for the person
		'xml' => the complete XML to be output
 

'home_content' - called prior to output home page content, shown to unlogged users
	$b is (string) HTML of section region

'contact_edit' - called when editing contact details on an individual from the Contacts page
	$b is (array)
		'contact' => contact record (array) of target contact
		'output' => the (string) generated HTML of the contact edit page

'contact_edit_post' - called when posting the contact edit page
	$b is the $_POST array

'init_1' - called just after DB has been opened and before session start
	$b is not used or passed

'page_end' - called after HTML content functions have completed
    $b is (string) HTML of content div

'jot_plugin' - add tools to jot toolbar
  $b is (string) HTML for tool icon


*** = subject to change





Not yet documented:

'atom_feed' ***

'atom_feed_end' ***

'parse_atom' ***

'atom_author' ***

'atom_entry' ***

'parse_link' ***