Файл: concrete5.7.5.6/concrete/src/Url/Resolver/PageUrlResolver.php
Строк: 47
<?php
namespace ConcreteCoreUrlResolver;
class PageUrlResolver implements UrlResolverInterface
{
/** @var UrlResolverInterface */
protected $pathUrlResolver;
public function __construct(PathUrlResolver $path_url_resolver)
{
$this->pathUrlResolver = $path_url_resolver;
}
public function resolve(array $arguments, $resolved = null)
{
if ($resolved) {
// We don't need to do any post processing on urls.
return $resolved;
}
$page = array_shift($arguments);
if ($page && $page instanceof ConcreteCorePagePage) {
if ($path = $page->getCollectionPath()) {
return $this->resolveWithResolver($path, $arguments);
}
// if there's no path but it's the home page
if ($page->getCollectionID() == HOME_CID) {
return $this->resolveWithResolver("/", $arguments);
}
// otherwise, it's a page object with no path yet, which happens when pages aren't yet approved
return $this->resolveWithResolver('/?cID=' . $page->getCollectionID(), $arguments);
}
return null;
}
protected function resolveWithResolver($path, $arguments, $resolved = null)
{
array_unshift($arguments, $path);
return $this->pathUrlResolver->resolve($arguments, $resolved);
}
}