|
Revision 99, 1.9 kB
(checked in by ben, 3 years ago)
|
Remove 'view all feeds' from my resources
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
// ben@elgg.net Oct 17, 2005 |
|---|
| 5 |
|
|---|
| 6 |
// Library functions |
|---|
| 7 |
require_once(path . "units/magpie/library.php"); |
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
$function['init'][] = path . "units/magpie/default_template.php"; |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
$function['rss:init'][] = path . "units/magpie/function_init.php"; |
|---|
| 14 |
$function['rss:init'][] = path . "units/magpie/function_actions.php"; |
|---|
| 15 |
|
|---|
| 16 |
$function['rss:get'][] = path . "units/magpie/function_get.php"; |
|---|
| 17 |
|
|---|
| 18 |
$function['rss:subscriptions'][] = path . "units/magpie/function_subscriptions.php"; |
|---|
| 19 |
|
|---|
| 20 |
$function['rss:subscriptions:get'][] = path . "units/magpie/function_get_subscriptions.php"; |
|---|
| 21 |
|
|---|
| 22 |
$function['rss:subscriptions:popular'][] = path . "units/magpie/function_subscriptions_popular.php"; |
|---|
| 23 |
|
|---|
| 24 |
$function['rss:update'][] = path . "units/magpie/function_update.php"; |
|---|
| 25 |
|
|---|
| 26 |
$function['rss:update:all'][] = path . "units/magpie/function_update_all.php"; |
|---|
| 27 |
|
|---|
| 28 |
$function['rss:update:all:cron'][] = path . "units/magpie/function_update_all_cron.php"; |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
$function['permissions:check'][] = path . "units/magpie/permissions_check.php"; |
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
$function['rss:view'][] = path . "units/magpie/function_view.php"; |
|---|
| 35 |
$function['rss:view:feed'][] = path . "units/magpie/function_view_individual.php"; |
|---|
| 36 |
$function['rss:view:post'][] = path . "units/magpie/function_view_post.php"; |
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
$function['rss:subscribed'][] = path . "units/magpie/function_is_subscribed.php"; |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
$function['menu:main'][] = path . "units/magpie/menu_main.php"; |
|---|
| 43 |
$function['menu:sub'][] = path . "units/magpie/menu_sub.php"; |
|---|
| 44 |
|
|---|
| 45 |
?> |
|---|
| 46 |
|
|---|