AmpQueryParameters.php in Accelerated Mobile Pages (AMP) 8
Same filename and directory in other branches
Namespace
Drupal\amp\UtilityFile
src/Utility/AmpQueryParameters.phpView source
<?php
namespace Drupal\amp\Utility;
/**
* Class AmpQueryParameters
*
* Adds amp query parameters to a URL.
*
* @package Drupal\amp\Utility
*/
class AmpQueryParameters {
/**
* Add amp query parameter to a URL.
*
* @param string $url
* The original URL value.
* @param boolean $warnfix
* Option to append warnfix to the end of the URL.
*
* @return string
* A url containing the additional amp query parameter(s).
*/
public function add($url, $warnfix = FALSE) {
// Append amp query string parameter
if (strpos($url, '?') === FALSE) {
$amp_url = $url . "?amp";
}
else {
$amp_url = $url . "&";
}
// Append optional warnfix query string parameter.
if ($warnfix) {
$amp_url = $amp_url . "&warnfix";
}
return $amp_url;
}
}
Classes
Name | Description |
---|---|
AmpQueryParameters | Class AmpQueryParameters |