2012-05-06 02:54:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name: Facebook Restrict
|
|
|
|
* Description: Install this addon and Facebook users will not be able to link friends. Existing users that are linking friends will not be affected.
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
2014-04-29 12:23:39 +00:00
|
|
|
* Status: Unsupported
|
2012-05-06 02:54:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
function facebook_restrict_install() {
|
|
|
|
set_config('facebook','restrict',1);
|
|
|
|
}
|
|
|
|
|
|
|
|
function facebook_restrict_uninstall() {
|
|
|
|
set_config('facebook','restrict',0);
|
|
|
|
}
|
|
|
|
|