Vorrei aggiungere una classe di body in D6 se ci si trova in una pagina specifica (s) attualmente nella mia template.php
ho:
if url('the/path') {
add the body class...
}
ma quella funzione non sembra funzionare per me.
Vorrei aggiungere una classe di body in D6 se ci si trova in una pagina specifica (s) attualmente nella mia template.php
ho:
if url('the/path') {
add the body class...
}
ma quella funzione non sembra funzionare per me.
Risposte:
È necessario utilizzare il seguente codice, poiché url()
restituisce l'URL per il percorso passato come argomento; pertanto, restituisce un valore che l'istruzione IF considererebbe equivalente TRUE
(tranne nel caso in cui la stringa sia "0"
o sia una stringa vuota).
if ($_GET['q'] == 'the/internal/Drupal/path') {
// Do stuff
}
Drupal's Alias è quello che stai cercando
<?php
$path = drupal_get_path_alias($_GET['q']);
if ($path == 'the/path') {
// do stuff
}
?>
Altri sotto:
URL completo
<?php
global $base_root;
$base_root . request_uri()
?>
L'URL "interno" di Drupal
<?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 (procedurale)
// 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) {
}
}
}
Fonte: arg () è obsoleto e verrà rimosso su Drupal.org
Hai provato request_uri ()?
http://api.drupal.org/api/drupal/includes--bootstrap.inc/function/request_uri/6
Ti consigliamo di utilizzare la funzione arg (). Puoi usarlo in due modi,
$args = arg();
Che in sostanza ti darà un array con ogni argomento url che è un altro valore, oppure puoi controllare argomenti specifici in questo modo:
$arg = arg(0);
Quindi, per il tuo esempio, potresti fare:
if(!is_null(arg(1)) && arg(0) == 'the' && arg(1) == 'path') { Do something }
o consiglierei questo:
$args = arg();
if(!empty($args[1]) && $args[0] == 'the' && $args[1] == 'path') { Do something }
$arg = implode('/',arg());
Se non si desidera avere un modello di pagina diverso per le pagine con un URL specifico, è possibile controllare l'URL corrente utilizzando il seguente codice.
if (arg(0) == 'the' && arg(1) == 'path') {
// Add the extra CSS class.
}
url () non è la funzione che restituisce l'URL della pagina corrente; se chiami url()
senza fornire alcun parametro, otterrai (almeno su Drupal 7 e senza l'implementazione di alcun modulo hook_ulr_outbound_alter()
) l'URL di base dell'installazione di Drupal.
La chiamata url('the/path')
ti restituirà "the/path"
, se nessun modulo sta modificando il valore restituito dalla funzione; ciò significa che il codice che hai mostrato sarà sempre eseguito e la classe CSS sarà sempre aggiunta.
Se stai cercando il percorso canonico per cui Drupal sta servendo una richiesta, puoi premere $ _GET ['q'], che dovrebbe tradurre anche se Drupal utilizza URL puliti.
Drupal 8:
arg () alternativa poiché non funziona più:
$path_args = explode('/', current_path());
print $path_args[1];
Per saperne di più: https://www.drupal.org/node/2274705