Edit |
Report |
Remove |
Additional Info |
---|
Type
|
Package ID
MonoTiz:SMF_Social_Network_LIT
|
First Created
January 26, 2010, 09:13:51 AM
|
Last Updated
October 11, 2014, 11:10:35 PM
|
global $sourcedir, $settings;
// show_form = 0 ---> only message without form
// show_form = 1 ---> message + form
// show_form = 2 ---> only form without message
$show_form = 1;
$num_items = 5;
$only_profile = false; // true show only your items, false show all items
if (!allowedTo('smfsocialnetwork_access'))
echo 'Sorry, you cannot access to SMF Social Network';
elseif (!file_exists($sourcedir . '/SMFSocialNetwork.php'))
echo 'No SMFSocialNetwork.php file found';
elseif (!file_exists($settings['default_theme_dir'] . '/SMFSocialNetwork.template.php'))
echo 'No SMFSocialNetwork.template.php file found';
else
{
require_once($sourcedir . '/SMFSocialNetwork.php');
smfsocialnetwork_portal_block($num_items, $show_form, $only_profile);
}