Chciałbym dodać klasę ciała w D6, jeśli jesteś na określonej stronie (stronach) obecnie w mojej template.php
Mam:
if url('the/path') {
add the body class...
}
ale ta funkcja chyba nie działa dla mnie.
Chciałbym dodać klasę ciała w D6, jeśli jesteś na określonej stronie (stronach) obecnie w mojej template.php
Mam:
if url('the/path') {
add the body class...
}
ale ta funkcja chyba nie działa dla mnie.
Odpowiedzi:
Powinieneś użyć następującego kodu, ponieważ url()
zwraca adres URL ścieżki przekazanej jako argument; dlatego zwraca wartość, którą instrukcja IF uznałaby za równoważną TRUE
(z wyjątkiem przypadku, gdy łańcuch jest "0"
lub jest łańcuchem pustym).
if ($_GET['q'] == 'the/internal/Drupal/path') {
// Do stuff
}
Drupal's Alias jest tym, czego szukasz
<?php
$path = drupal_get_path_alias($_GET['q']);
if ($path == 'the/path') {
// do stuff
}
?>
Inne poniżej:
Pełny adres URL
<?php
global $base_root;
$base_root . request_uri()
?>
„Wewnętrzny” adres URL Drupala
<?php
$arg = arg();
// Path of 'node/234' -> $arg[0] == 'node' && $arg[1] == 234
?>
Drupal 7
// Retrieve an array which contains the path pieces.
$path_args = arg();
// Check if the current page is admin.
if (arg(0) == 'admin') {
// This is wrong even in D7. path_is_admin() should be used instead.
}
// Conditionally add css or js in certain page.
function mymodule_page_build(&$page) {
if (arg(0) == 'sth' && arg(1) == 'else') {
drupal_add_css(drupal_get_path('module', 'mymodule') . '/css/my.css');
}
}
// Load the current node.
if (arg(0) == 'node' && is_numeric(arg(1))) {
// This is wrong even in D7. menu_get_object() should be used instead.
}
Drupal 8 (proceduralny)
// Retrieve an array which contains the path pieces.
$path_args = explode('/', current_path());
// Check if the current page is admin.
if (\Drupal::service('router.admin_context')->isAdminRoute(\Drupal::routeMatch()->getRouteObject())) {
}
// Conditionally add css or js in certain page.
function mymodule_page_build(&$page) {
if (\Drupal::routeMatch()->getRouteName() == 'my.route') {
$page['#attached']['css'][] = drupal_get_path('module', 'mymodule') . '/css/my.css';
}
}
// Load the current node.
$node = \Drupal::routeMatch()->getParameter('node');
if ($node) {
}
Drupal 8 (OOP)
use Symfony\Component\HttpFoundation\Request;
use Drupal\Core\Routing\AdminContext;
use Drupal\Core\Routing\RouteMatchInterface;
class myClass {
public function __construct(Request $request, AdminContext $admin_context, RouteMatchInterface $route_match) {
$this->request = $request;
$this->adminContext = $admin_context;
$this->routeMatch = $route_match;
}
public function test() {
// This might change in https://drupal.org/node/2239009
$current_path = $this->request->attributes->get('_system_path');
// Retrieve an array which contains the path pieces.
$path_args = explode('/', $current_path);
// Check if the current page is admin.
if ($this->adminContext->isAdminRoute($this->routeMatch->getRouteObject())) {
}
// Load the current node.
$node = $this->routeMatch->getParameter('node');
if ($node) {
}
}
}
Źródło: arg () jest przestarzałe i zostanie usunięte z Drupal.org
Próbowałeś request_uri ()?
http://api.drupal.org/api/drupal/includes--bootstrap.inc/function/request_uri/6
Będziesz chciał użyć funkcji arg (). Możesz użyć tego na dwa sposoby,
$args = arg();
Co w zasadzie da ci tablicę z każdym argumentem URL będącym inną wartością, lub możesz sprawdzić konkretne argumenty w ten sposób:
$arg = arg(0);
Na przykład możesz wykonać:
if(!is_null(arg(1)) && arg(0) == 'the' && arg(1) == 'path') { Do something }
lub poleciłbym to:
$args = arg();
if(!empty($args[1]) && $args[0] == 'the' && $args[1] == 'path') { Do something }
$arg = implode('/',arg());
Jeśli nie chcesz mieć innego szablonu strony dla stron o określonym adresie URL, możesz sprawdzić bieżący adres URL, używając następującego kodu.
if (arg(0) == 'the' && arg(1) == 'path') {
// Add the extra CSS class.
}
url () nie jest funkcją, która zwraca adres URL bieżącej strony; jeśli zadzwonisz, url()
nie podając żadnych parametrów, otrzymasz (przynajmniej na Drupal 7 i bez implementacji modułów hook_ulr_outbound_alter()
) podstawowy adres URL instalacji Drupal.
Wywołanie url('the/path')
zwróci tylko "the/path"
, jeśli żaden moduł nie zmienia wartości zwracanej z funkcji; oznacza to, że pokazany kod będzie zawsze wykonywany, a klasa CSS zawsze dodawana.
Jeśli szukasz kanonicznej ścieżki, dla której Drupal obsługuje żądanie, możesz nacisnąć $ _GET ['q'], co powinno zostać przetłumaczone, nawet jeśli Drupal używa czystych adresów URL.
Drupal 8:
Arg () alternatywa, ponieważ nie działa już:
$path_args = explode('/', current_path());
print $path_args[1];
Czytaj więcej: https://www.drupal.org/node/2274705