aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php46
1 files changed, 45 insertions, 1 deletions
diff --git a/index.php b/index.php
index aeea7ff62..ae8dc5e51 100644
--- a/index.php
+++ b/index.php
@@ -24,6 +24,50 @@
get_objects(3,"blog","mammals","are lovely", 7, 2, 1);
$obj = new stdClass;
- $obj->id = 3;
+ $obj->id = 3;
+
+
+
+
+ // Testing ///////
+
+ // Create / load a site
+ $site = get_site(1);
+ if (!$site)
+ {
+ $site = new ElggSite();
+
+ $site->title = "Test title";
+ $site->description = "Test description";
+ $site->url = "http://dushka/~icewing/Workingdirectory/elggnew/";
+ $site->owner_id = 1;
+ $site->access_id = 0;
+
+ error_log("LOADED NEW SITE: Saving");
+
+ $site->save();
+ }
+ else
+ $site = new ElggSite($site);
+
+
+
+
+ // annotate site
+
+
+ // add meta data
+
+
+ // get site
+
+ // get site metadata
+ // change site metadata
+
+ // get site metadata
+
+
+ // get site annotations
+
?> \ No newline at end of file