Update info comments in all plugins
This commit is contained in:
parent
00e142e4f7
commit
b7dc9f8867
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Calculator App
|
||||
* Description: Simple Calculator Application
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
|
||||
function calc_install() {
|
||||
register_hook('app_menu', 'addon/calc/calc.php', 'calc_app_menu');
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: Converter App
|
||||
* Description: Unit converter application
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
function convert_install() {
|
||||
register_hook('app_menu', 'addon/convert/convert.php', 'convert_app_menu');
|
||||
|
|
33
addon/facebook/README
Normal file
33
addon/facebook/README
Normal file
|
@ -0,0 +1,33 @@
|
|||
Installing the Friendika/Facebook connector
|
||||
|
||||
1. register an API key for your site from developer.facebook.com
|
||||
a. We'd be very happy if you include "Friendika" in the application name
|
||||
to increase name recognition. The Friendika icons are also present
|
||||
in the images directory and may be uploaded as a Facebook app icon.
|
||||
Use images/friendika-16.jpg for the Icon and images/friendika-128.jpg for the Logo.
|
||||
b. The url should be your site URL with a trailing slash.
|
||||
You may use http://portal.friendika.com/privacy as the privacy policy
|
||||
URL unless your site has different requirements, and
|
||||
http://portal.friendika.com as the Terms of Service URL unless
|
||||
you have different requirements. (Friendika is a software application
|
||||
and does not require Terms of Service, though your installation of it might).
|
||||
c. Set the following values in your .htconfig.php file
|
||||
$a->config['facebook']['appid'] = 'xxxxxxxxxxx';
|
||||
$a->config['facebook']['appsecret'] = 'xxxxxxxxxxxxxxx';
|
||||
Replace with the settings Facebook gives you.
|
||||
2. Enable the facebook plugin by including it in .htconfig.php - e.g.
|
||||
$a->config['system']['addon'] = 'plugin1,plugin2,facebook';
|
||||
3. Visit the Facebook Settings section of the "Settings->Plugin Settings" page.
|
||||
and click 'Install Facebook Connector'.
|
||||
4. This will ask you to login to Facebook and grant permission to the
|
||||
plugin to do its stuff. Allow it to do so.
|
||||
5. You're done. To turn it off visit the Plugin Settings page again and
|
||||
'Remove Facebook posting'.
|
||||
|
||||
Vidoes and embeds will not be posted if there is no other content. Links
|
||||
and images will be converted to a format suitable for the Facebook API and
|
||||
long posts truncated - with a link to view the full post.
|
||||
|
||||
Facebook contacts will not be able to view private photos, as they are not able to
|
||||
authenticate to your site to establish identity. We will address this
|
||||
in a future release.
|
|
@ -1,4 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Facebook Connector
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Installing the Friendika/Facebook connector
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
<?php
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Name: Fortunate
|
||||
* Description: Add a random fortune cookie at the bottom of every pages.
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
|
||||
function fortunate_install() {
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: Java photo uploader
|
||||
* Description: WARNING: This module currently has privacy issues. The java package does not pass the permissions array intact and could lead to photos being seen by people that were excluded from seeing them.
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* Java photo uploader, uses Jumploader
|
||||
|
@ -93,4 +100,4 @@ function java_upload_photo_post_end(&$a,&$b) {
|
|||
if(x($a->data,'java_upload') && $a->data['java_upload'])
|
||||
killme();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: JS Uploader
|
||||
* Description: JavaScript photo/image uploader. Uses Valum 'qq' Uploader.
|
||||
* Version: 1.0
|
||||
* Author: Chris Case <http://friendika.openmindspace.org/profile/chris_case>
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* JavaScript Photo/Image Uploader
|
||||
|
|
17
addon/ldapauth/README
Normal file
17
addon/ldapauth/README
Normal file
|
@ -0,0 +1,17 @@
|
|||
Authenticate a user against an LDAP directory
|
||||
Useful for Windows Active Directory and other LDAP-based organisations
|
||||
to maintain a single password across the organisation.
|
||||
|
||||
Optionally authenticates only if a member of a given group in the directory.
|
||||
|
||||
The person must have registered with Friendika using the normal registration
|
||||
procedures in order to have a Friendika user record, contact, and profile.
|
||||
|
||||
Note when using with Windows Active Directory: you may need to set TLS_CACERT in your site
|
||||
ldap.conf file to the signing cert for your LDAP server.
|
||||
|
||||
The required configuration options for this module may be set in the .htconfig.php file
|
||||
e.g.:
|
||||
|
||||
$a->config['ldapauth']['ldap_server'] = 'host.example.com';
|
||||
...etc.
|
|
@ -1,5 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: LDAP Authenticate
|
||||
* Description: Authenticate a user against an LDAP directory
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Friendika addon
|
||||
*
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Piwik Analytics
|
||||
* Description: Piwik Analytics Plugin for Friendika
|
||||
* Version: 1.0
|
||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||
*/
|
||||
|
||||
|
||||
/* Piwik Analytics Plugin for Friendika
|
||||
*
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* Poor Man Cron. Execute updates on pageviews
|
||||
*
|
||||
* Addon Name: poormancron
|
||||
*
|
||||
* Name: Poor Man Cron
|
||||
* Description: Execute updates on pageviews, without the need of commandline php
|
||||
* Version: 1.2
|
||||
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix>
|
||||
*/
|
||||
|
||||
function poormancron_install() {
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Sample Friendika plugin/addon
|
||||
*
|
||||
* Addon Name: randplace
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Name: Random place
|
||||
* Description: Sample Friendika plugin/addon. Set a random place when posting.
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* Addons are registered with the system in the
|
||||
* .htconfig.php file.
|
||||
|
@ -178,4 +177,4 @@ function randplace_settings(&$a,&$s) {
|
|||
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Sniper App
|
||||
* Description: Example of flash game application
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
function sniper_install() {
|
||||
register_hook('app_menu', 'addon/sniper/sniper.php', 'sniper_app_menu');
|
||||
|
@ -28,4 +34,4 @@ $o .= <<< EOT
|
|||
EOT;
|
||||
|
||||
return $o;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: StatusNet Connector
|
||||
* Version: 1.0
|
||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||
*/
|
||||
|
||||
/* StatusNet Plugin for Friendika
|
||||
*
|
||||
* Author: Tobias Diekershoff
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: TicTac App
|
||||
* Description: The TicTacToe game application
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
|
||||
function tictac_install() {
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Twitter Connector
|
||||
* Version: 1.0
|
||||
* Author: Tobias Diekershoff <https://diekershoff.homeunix.net/friendika/profile/tobias>
|
||||
*/
|
||||
|
||||
|
||||
/* Twitter Plugin for Friendika
|
||||
*
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* widgets from friendika
|
||||
*
|
||||
* allow to embed info from friendika into another site
|
||||
*/
|
||||
|
||||
/**
|
||||
* Name: Widgets
|
||||
* Description: Allow to embed info from friendika into another site
|
||||
* Version: 1.0
|
||||
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix/>
|
||||
*/
|
||||
|
||||
|
||||
function widgets_install() {
|
||||
register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings');
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
|
||||
<p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/plugins/$plugin/?a=t">$action</a></p>
|
||||
<p>$info.description</p>
|
||||
<p>
|
||||
|
||||
{{ for $info.author as $a }}
|
||||
<a href="$a.link">$a.name</a>
|
||||
<p class="author">{{ if $a.link }}<a href="$a.link"><span class='icon remote-link'></span></a>{{ endif }}$a.name</p>
|
||||
{{ endfor }}
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
{{ if $readme }}
|
||||
|
|
|
@ -2550,6 +2550,7 @@ a.mail-list-link {
|
|||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
#adminpage .author .icon { float: left;}
|
||||
|
||||
/**
|
||||
* ICONS
|
||||
|
|
Loading…
Reference in a new issue