From b022f5df563d9b0f09618d0f70cad09ac3f1143d Mon Sep 17 00:00:00 2001 From: sembrestels Date: Thu, 13 Oct 2011 04:58:09 +0200 Subject: Moved not always used functions to a library. --- lib/dokuwiki.php | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 lib/dokuwiki.php (limited to 'lib/dokuwiki.php') diff --git a/lib/dokuwiki.php b/lib/dokuwiki.php new file mode 100644 index 000000000..af2e14b8d --- /dev/null +++ b/lib/dokuwiki.php @@ -0,0 +1,62 @@ +guid); + //error_log($user->guid); + if (!$page_owner) + $page_owner = 0; + $entities = elgg_get_entities(array('types' => 'object', 'subtypes' => 'dokuwiki', 'limit' => 1, 'owner_guid' => $page_owner)); + if ($entities) { + $doku = $entities[0]; + return $doku; + } + elseif ($user && $create) { + elgg_set_ignore_access(true); + $newdoku = new ElggObject(); + $newdoku->access_id = ACCESS_PUBLIC; + $newdoku->owner_guid = $page_owner; + $newdoku->subtype = 'dokuwiki'; + $newdoku->container_guid = $page_owner; + $newdoku->save(); + $acl = array(); + $acl[] = "# acl.auth.php"; + $acl[] = '# '; + $acl[] = "* @ALL 0"; + $acl[] = "* @user 1"; + $acl[] = "* @member 8"; + $acl[] = "* @admin 16"; + $acl[] = "* @root 255"; + $newdoku->wiki_acl = implode("\n", $acl)."\n"; + elgg_set_ignore_access(false); + return $newdoku; + } +} + +function elggdoku_recurse_copy($src,$dst) { + $dir = opendir($src); + @mkdir($dst); + while(false !== ( $file = readdir($dir)) ) { + if (( $file != '.' ) && ( $file != '..' )) { + if ( is_dir($src . '/' . $file) ) { + elggdoku_recurse_copy($src . '/' . $file,$dst . '/' . $file); + } + else { + copy($src . '/' . $file,$dst . '/' . $file); + } + } + } + closedir($dir); +} + +function elggdokuwiki_create_datafolder($path) { + if (is_dir($path)) // if it exists must be already created + return; + mkdir($path, 0700, true); + $orig = elgg_get_plugins_path().'dokuwiki/lib/dokuwiki/data'; + elggdoku_recurse_copy($orig, $path); + +} + +?> -- cgit v1.2.3