0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
modules
/
[
Home
]
File: mod-func-facebook.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: mod-func-facebook.php 53807 2015-02-06 00:57:17Z jyhem $ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"], basename(__FILE__)) !== false) { header("location: index.php"); exit; } /** * @return array */ function module_facebook_info() { return array( 'name' => tra('Facebook'), 'description' => tra('Shows the Wall of a user'), 'params' => array( 'user' => array( 'name' => 'user', 'description' => tra('Tiki user to show Facebook wall of.'), 'required' => true ), 'showuser' => array( 'name' => 'showuser', 'description' => tra('Show username in timeline. y|n'), 'default' => 'n', ), ), 'common_params' => array('nonums', 'rows'), ); } /** * @param $mod_reference * @param $module_params */ function module_facebook( $mod_reference, $module_params ) { global $prefs; global $socialnetworkslib; require_once ('lib/socialnetworkslib.php'); if ( !empty($module_params['user']) ) { $user = $module_params['user']; $response=$socialnetworkslib->facebookGetWall($user, true); if ($response == -1) { $timeline[0]['message'] = tra('user not registered with facebook').": $user"; } else { $timeline = $response; } } else { $i=0; $timeline[$i]['message'] = tra('No username given'); $timeline[$i]['created_time'] = ''; $timeline[$i]['fromName'] = ''; } $timeline=array_splice($timeline, 0, $module_params['max']?$module_params['max']:10); $smarty = TikiLib::lib('smarty'); $smarty->assign('timeline', $timeline); }