本文整理匯總了PHP中Drupal\views\ViewExecutable::getStyle方法的典型用法代碼示例。如果您正苦於以下問題:PHP ViewExecutable::getStyle方法的具體用法?PHP ViewExecutable::getStyle怎麽用?PHP ViewExecutable::getStyle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Drupal\views\ViewExecutable
的用法示例。
在下文中一共展示了ViewExecutable::getStyle方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getURLForGranularity
/**
* Get the Url object that will link to the view for the given granularity and arguments.
*
* @todo Allow a View to link to other Views by itself for a certain granularity.
*
* @param \Drupal\views\ViewExecutable $view
* @param $granularity
* @param $arguments
*
* @return \Drupal\Core\Url|null
*/
static function getURLForGranularity(ViewExecutable $view, $granularity, $arguments)
{
$granularity_links = $view->getStyle()->options['granularity_links'];
if ($granularity_links[$granularity]) {
/** @var RouteProvider $router */
$router = \Drupal::getContainer()->get('router.route_provider');
$route_name = $granularity_links[$granularity];
// Check if route exists. $router->getRoutesByName will throw error if no match.
$routes = $router->getRoutesByNames([$route_name]);
if ($routes) {
return Url::fromRoute($route_name, static::getViewRouteParameters($arguments));
}
}
if ($display_id = static::getDisplayForGranularity($view, $granularity)) {
// @todo Handle arguments in different positions
// @todo Handle query string parameters.
return static::getViewsURL($view, $display_id, $arguments);
}
return NULL;
}