class PagerPathSubscriber in Tome 8
Converts pager query parameters to static paths.
@internal
Hierarchy
- class \Drupal\tome_static\EventSubscriber\PagerPathSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
Expanded class hierarchy of PagerPathSubscriber
1 string reference to 'PagerPathSubscriber'
- tome_static.services.yml in modules/
tome_static/ tome_static.services.yml - modules/tome_static/tome_static.services.yml
1 service uses PagerPathSubscriber
File
- modules/
tome_static/ src/ EventSubscriber/ PagerPathSubscriber.php, line 15
Namespace
Drupal\tome_static\EventSubscriberView source
class PagerPathSubscriber implements EventSubscriberInterface {
/**
* Reacts to a modify destination event.
*
* @param \Drupal\tome_static\Event\ModifyDestinationEvent $event
* The event.
*/
public function modifyDestination(ModifyDestinationEvent $event) {
$destination = $event
->getDestination();
$destination = $this
->modifyUrl($destination);
$event
->setDestination($destination);
}
/**
* Reacts to a modify HTML event.
*
* @param \Drupal\tome_static\Event\ModifyHtmlEvent $event
* The event.
*/
public function modifyHtml(ModifyHtmlEvent $event) {
$html = $event
->getHtml();
$path = $event
->getPath();
$document = new \DOMDocument();
@$document
->loadHTML($html);
$xpath = new \DOMXPath($document);
/** @var \DOMElement $node */
foreach ($xpath
->query('//a[(contains(@href,"?page=") or contains(@href,"&page="))]') as $node) {
$original_href = $node
->getAttribute('href');
if ($original_href[0] === '?') {
$new_href = strtok($path, '?') . $original_href;
}
else {
$new_href = $original_href;
}
$event
->addInvokePath($new_href);
$new_href = $this
->modifyUrl($new_href);
$event
->addExcludePath($new_href);
$html = str_replace($original_href, $new_href, $html);
$html = str_replace(htmlentities($original_href), $new_href, $html);
}
$event
->setHtml($html);
}
/**
* Modifies a URL to replace pager query parameters with paths.
*
* @param string $url
* A URL.
*
* @return string
* The modified URL.
*/
protected function modifyUrl($url) {
parse_str(parse_url($url, PHP_URL_QUERY), $query);
if ($query && isset($query['page']) && is_numeric($query['page'])) {
$base_path = preg_replace('/\\?.*/', '', $url);
if ($query['page'] != 0) {
if ($base_path === '/') {
$base_path = '';
}
$url = $base_path . '/page/' . ($query['page'] + 1);
}
else {
$url = !empty($base_path) ? $base_path : '/';
}
}
return $url;
}
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
$events[TomeStaticEvents::MODIFY_DESTINATION][] = [
'modifyDestination',
];
$events[TomeStaticEvents::MODIFY_HTML][] = [
'modifyHtml',
];
return $events;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PagerPathSubscriber:: |
public static | function | ||
PagerPathSubscriber:: |
public | function | Reacts to a modify destination event. | |
PagerPathSubscriber:: |
public | function | Reacts to a modify HTML event. | |
PagerPathSubscriber:: |
protected | function | Modifies a URL to replace pager query parameters with paths. |