0
@@ -845,6 +845,10 @@ class CMSModule
0
+ function IsExclusive() {
0
* ------------------------------------------------------------------
0
* Installation Related Functions
0
@@ -859,7 +863,7 @@ class CMSModule
0
- $filename = dirname(dirname(dirname(__FILE__))) .
0
+ $filename = dirname(dirname(dirname(__FILE__))) .
0
'/modules/'.$this->GetName().'/method.install.php';
0
if (@is_file($filename))
0
@@ -868,7 +872,7 @@ class CMSModule
0
$config =& $gCms->GetConfig();
0
$smarty =& $gCms->GetSmarty();
0
@@ -894,7 +898,7 @@ class CMSModule
0
- $filename = dirname(dirname(dirname(__FILE__))) .
0
+ $filename = dirname(dirname(dirname(__FILE__))) .
0
'/modules/'.$this->GetName().'/method.uninstall.php';
0
if (@is_file($filename))
0
@@ -903,7 +907,7 @@ class CMSModule
0
$config =& $gCms->GetConfig();
0
$smarty =& $gCms->GetSmarty();
0
@@ -943,7 +947,7 @@ class CMSModule
0
function Upgrade($oldversion, $newversion)
0
- $filename = dirname(dirname(dirname(__FILE__))) .
0
+ $filename = dirname(dirname(dirname(__FILE__))) .
0
'/modules/'.$this->GetName().'/method.upgrade.php';
0
if (@is_file($filename))
0
@@ -952,7 +956,7 @@ class CMSModule
0
$config =& $gCms->GetConfig();
0
$smarty =& $gCms->GetSmarty();
0
@@ -1605,8 +1609,8 @@ class CMSModule
0
- * Called before the content is sent off to smarty for processing. Basically
0
- * overlaps with ContentPreRender, but it makes more sense to be named
0
+ * Called before the content is sent off to smarty for processing. Basically
0
+ * overlaps with ContentPreRender, but it makes more sense to be named
0
* @param string The precompiled text
0
@@ -1616,7 +1620,7 @@ class CMSModule
0
- * Called right after smarty is done processing and ready to head off to the
0
+ * Called right after smarty is done processing and ready to head off to the
0
* cache. Does the same as PostRenderNonCached, but with a better name.
0
* @param string The postcompiled text
0
@@ -1626,7 +1630,7 @@ class CMSModule
0
- * This serves no purpose anymore. Template, content and html blobs are
0
+ * This serves no purpose anymore. Template, content and html blobs are
0
* never pushed together at any point and cached.
0
@@ -2518,9 +2522,9 @@ class CMSModule
0
function RedirectContent($id)
0
#$content = ContentManager::LoadContentFromId($id);
0
$manager =& $gCms->GetHierarchyManager();
0
- $node =& $manager->sureGetNodeBy
Id($id);
0
+ $node =& $manager->sureGetNodeBy
Alias($id);
0
$content =& $node->GetContent();
Comments
No one has commented yet.