Ignore:
Timestamp:
Dec 29, 2010, 11:45:21 PM (13 years ago)
Author:
rub
Message:

Add social plugin activity feed
Add convert function on admin page config
Add missing options on social plugins
Add activity tab sheet on admin config page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/FacebookPlug/Plugin/include/conf.inc.php

    r8375 r8386  
    4242    'social_plugin_comments' => array(),
    4343    'social_plugin_like_box' => array(),
     44    'social_plugin_activity_feed' => array(),
    4445  ),
    4546  unserialize($conf['fbp']));
     
    5556    'colorscheme' => 'dark',
    5657    'width' => null,
     58    'font' => null,
     59    'ref' => null,
    5760  ),
    5861  $conf['fbp']['social_plugin_like_button']);
     
    8386  $conf['fbp']['social_plugin_comments']);
    8487
     88$conf['fbp']['social_plugin_activity_feed'] = array_merge(
     89  // default values
     90  array
     91  (
     92    'enabled' => true,
     93    'site' => null,
     94    'colorscheme' => 'dark',
     95    'recommendations' => false,
     96    'header' => true,
     97    'width' => 210,
     98    'height' => null,
     99    'border_color' => null,
     100    'filter' => null,
     101    'ref' => null,
     102  ),
     103  $conf['fbp']['social_plugin_activity_feed']);
     104
    85105$conf['fbp']['social_plugin_like_box'] = array_merge(
    86106  // default values
     
    94114    'header' => true,
    95115    'width' => 210,
     116    'height' => null,
    96117  ),
    97118  $conf['fbp']['social_plugin_like_box']);
Note: See TracChangeset for help on using the changeset viewer.