protected function SimpleSitemapViews::convertArgumentsArrayToString in Simple XML sitemap (Views integration) 8
Converts an array of arguments to a string.
Parameters
array $args: Array of arguments to convert.
Return value
string A string representation of the arguments.
2 calls to SimpleSitemapViews::convertArgumentsArrayToString()
- SimpleSitemapViews::addArgumentsToIndex in src/
SimpleSitemapViews.php - Adds view arguments to the index.
- SimpleSitemapViews::getArgumentsStringVariations in src/
SimpleSitemapViews.php - Get variations for string representation of arguments.
File
- src/
SimpleSitemapViews.php, line 329 - Contains simple_sitemap_views service.
Class
- SimpleSitemapViews
- Class to manage sitemap data for views.
Namespace
Drupal\simple_sitemap_viewsCode
protected function convertArgumentsArrayToString(array $args) {
return implode(self::ARGUMENT_SEPARATOR, $args);
}