本文整理匯總了PHP中Tiki_Profile::getReferences方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tiki_Profile::getReferences方法的具體用法?PHP Tiki_Profile::getReferences怎麽用?PHP Tiki_Profile::getReferences使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tiki_Profile
的用法示例。
在下文中一共展示了Tiki_Profile::getReferences方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getInstallOrder
function getInstallOrder(Tiki_Profile $profile)
{
// Obtain the list of all required profiles
$dependencies = $profile->getRequiredProfiles(true);
$dependencies[$profile->url] = $profile;
$referenced = array();
$knownObjects = array();
foreach (Tiki_Profile_Object::getNamedObjects() as $o) {
$knownObjects[] = Tiki_Profile_Object::serializeNamedObject($o);
}
// Build the list of dependencies for each profile
$short = array();
foreach ($dependencies as $url => $profile) {
$short[$url] = array();
foreach ($profile->getRequiredProfiles() as $u => $p) {
$short[$url][] = $u;
}
foreach ($profile->getNamedObjects() as $o) {
$knownObjects[] = Tiki_Profile_Object::serializeNamedObject($o);
}
foreach ($profile->getReferences() as $o) {
$referenced[] = Tiki_Profile_Object::serializeNamedObject($o);
}
if (!$this->isInstallable($profile)) {
return false;
}
}
// Make sure all referenced objects actually exist
$remain = array_diff($referenced, $knownObjects);
if (!empty($remain)) {
throw new Exception("Unknown objects are referenced: " . implode(', ', $remain));
}
// Build the list of packages that need to be installed
$toSequence = array();
foreach ($dependencies as $url => $profile) {
if (!$this->isInstalled($profile)) {
$toSequence[] = $url;
}
}
// Order the packages to make sure all dependencies are met
$toInstall = array();
$counter = 0;
while (count($toSequence)) {
// If all packages were tested and no order was found, exit
// Probably means there is a circular dependency
if ($counter++ > count($toSequence) * 2) {
throw new Exception("Profiles could not be ordered: " . implode(", ", $toSequence));
}
$url = reset($toSequence);
// Remove packages that are already scheduled or installed from dependencies
$short[$url] = array_diff($short[$url], array_keys($this->installed), $toInstall);
$element = array_shift($toSequence);
if (count($short[$url])) {
$toSequence[] = $element;
} else {
$counter = 0;
$toInstall[] = $element;
}
}
$final = array();
// Perform the actual install
foreach ($toInstall as $url) {
$final[] = $dependencies[$url];
}
return $final;
}