aboutsummaryrefslogtreecommitdiff
path: root/mod/sitepages
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-06-30 19:53:43 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-06-30 19:53:43 +0000
commit1a5afcb864705a0209fe10cfa17fb6cc6edc90c9 (patch)
tree1a4e964046a8666d7f4169bb75a8d37ca6636384 /mod/sitepages
parent9e4a304bf5e6561a12c60ffbfcd110d76c6cb516 (diff)
downloadelgg-1a5afcb864705a0209fe10cfa17fb6cc6edc90c9.tar.gz
elgg-1a5afcb864705a0209fe10cfa17fb6cc6edc90c9.tar.bz2
Updated README.txt for new ECML. Moved settings to site category.
git-svn-id: http://code.elgg.org/elgg/trunk@6599 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/sitepages')
-rw-r--r--mod/sitepages/README.txt20
-rw-r--r--mod/sitepages/start.php10
-rw-r--r--mod/sitepages/views/default/admin/site/sitepages.php (renamed from mod/sitepages/views/default/settings/sitepages/edit.php)0
3 files changed, 16 insertions, 14 deletions
diff --git a/mod/sitepages/README.txt b/mod/sitepages/README.txt
index 3080db7a0..2c15bdd74 100644
--- a/mod/sitepages/README.txt
+++ b/mod/sitepages/README.txt
@@ -4,9 +4,9 @@ HTML metatags.
CONTENTS:
1. Overview
2. Using ECML on the front pages
- 2.1 [[login_box]]
- 2.2 [[site_stats]]
- 2.3 [[user_list]]
+ 2.1 [loginbox]
+ 2.2 [sitestats]
+ 2.3 [userlist]
1. OVERVIEW
@@ -21,23 +21,23 @@ CONTENTS:
Site Pages supports ECML on the front page and provides the following
ECML keywords:
- [[login_box]] -- A login box. Required on the logged out front page.
- [[site_stats]] -- Simple site statistics.
- [[user_list]] -- A list of users.
+ [loginbox] -- A login box. Required on the logged out front page.
+ [sitestats] -- Simple site statistics.
+ [userlist] -- A list of users.
To learn more about ECML, click the ECML icon below the input fields.
-2.1 [[login_box]]
+2.1 [loginbox]
The Login Box keyword displays a box to let users log in. This view
is required on the logged out front page.
-2.2 [[site_stats]]
+2.2 [sitestats]
The Site Stats keyword doesn't do anything yet.
-2.3 [user_list]]
+2.3 [userlist]
The User List keyword displays a list of users and takes the following
optional arguments (*default if not passed):
@@ -47,4 +47,4 @@ CONTENTS:
only_with_avatars=*true|false -- Only show users who have uploaded an
avatar
- limit=*10 -- Show this many users. \ No newline at end of file
+ limit=*10 -- Show this many users.
diff --git a/mod/sitepages/start.php b/mod/sitepages/start.php
index 9f9bc1441..eb5fcf763 100644
--- a/mod/sitepages/start.php
+++ b/mod/sitepages/start.php
@@ -25,7 +25,7 @@
function sitepages_init() {
require_once(dirname(__FILE__) . '/sitepages_functions.php');
global $CONFIG;
-
+
// Extend CSS
elgg_extend_view('css', 'sitepages/css');
@@ -49,11 +49,13 @@ function sitepages_init() {
// define our own ecml keywords and views
register_plugin_hook('get_keywords', 'ecml', 'sitepages_ecml_keyword_hook');
register_plugin_hook('get_views', 'ecml', 'sitepages_ecml_views_hook');
-
+
// hook into the walled garden pages
register_plugin_hook('public_pages', 'walled_garden', 'sitepages_public_pages');
register_action('settings/sitepages/save', FALSE, "{$CONFIG->pluginspath}sitepages/actions/edit_settings.php");
+
+ elgg_add_admin_submenu_item('sitepages', elgg_echo('sitepages'), 'site');
}
/**
@@ -174,7 +176,7 @@ function sitepages_ecml_keyword_hook($hook, $entity_type, $return_value, $params
// 'restricted' => array('sitepages/custom_frontpage')
// );
- $return_value['entity'] = array(
+ $return_value['entities'] = array(
'description' => elgg_echo('sitepages:ecml:keywords:entity:desc'),
'usage' => elgg_echo('sitepages:ecml:keywords:entity:usage'),
'restricted' => array('sitepages/custom_frontpage')
@@ -207,7 +209,7 @@ function sitepages_public_pages($hook, $type, $return_value, $params) {
$return_value[] = 'pg/sitepages/read/About';
$return_value[] = 'pg/sitepages/read/Terms';
$return_value[] = 'pg/sitepages/read/Privacy';
-
+
return $return_value;
}
diff --git a/mod/sitepages/views/default/settings/sitepages/edit.php b/mod/sitepages/views/default/admin/site/sitepages.php
index 86cf6760c..86cf6760c 100644
--- a/mod/sitepages/views/default/settings/sitepages/edit.php
+++ b/mod/sitepages/views/default/admin/site/sitepages.php