Author: david
Date: Fri Sep 11 12:57:34 2009
New Revision: 3230
Log:
Cosmetic change - make first letter of buildInformationObjectTree() function
lowercase.
Modified:
trunk/apps/qubit/modules/informationobject/actions/contextMenuComponent.class.php
Modified:
trunk/apps/qubit/modules/informationobject/actions/contextMenuComponent.class.php
==============================================================================
---
trunk/apps/qubit/modules/informationobject/actions/contextMenuComponent.class.php
Fri Sep 11 12:44:45 2009 (r3229)
+++
trunk/apps/qubit/modules/informationobject/actions/contextMenuComponent.class.php
Fri Sep 11 12:57:34 2009 (r3230)
@@ -47,7 +47,7 @@
{
$path[] = $ancestor->getId();
}
- $informationObjects =
$this->BuildInformationObjectTree($ancestors->offsetGet(0), $path);
+ $informationObjects =
$this->buildInformationObjectTree($ancestors->offsetGet(0), $path);
if (0 < count($informationObjects))
{
@@ -151,7 +151,7 @@
}
}
- protected function BuildInformationObjectTree($ancestor, $path)
+ protected function buildInformationObjectTree($ancestor, $path)
{
$tmp = array();
@@ -168,7 +168,7 @@
// If it in path, we go on building the tree in that way
if (in_array($children->getId(), $path))
{
- $tmp = array_merge($tmp,
$this->BuildInformationObjectTree($children, $path));
+ $tmp = array_merge($tmp,
$this->buildInformationObjectTree($children, $path));
}
// If it is the selected information object, add it children
else if ($children->getId() == $this->informationObject->getId())
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---