Şu anda benim template.php
var belirli bir sayfa (lar) iseniz D6 bir vücut sınıfı eklemek istiyorum :
if url('the/path') {
add the body class...
}
ama bu işlev benim için çalışmıyor gibi görünüyor.
Şu anda benim template.php
var belirli bir sayfa (lar) iseniz D6 bir vücut sınıfı eklemek istiyorum :
if url('the/path') {
add the body class...
}
ama bu işlev benim için çalışmıyor gibi görünüyor.
Yanıtlar:
Bağımsız url()
değişken olarak iletilen yolun URL'sini döndürdüğü için aşağıdaki kodu kullanmalısınız ; bu nedenle, IF-ifadesinin eşdeğer olduğunu düşündüğü bir değer döndürür TRUE
(dizenin "0"
boş bir dize olması veya olması dışında ).
if ($_GET['q'] == 'the/internal/Drupal/path') {
// Do stuff
}
Drupal'ın Takma Adı aradığın şey
<?php
$path = drupal_get_path_alias($_GET['q']);
if ($path == 'the/path') {
// do stuff
}
?>
Aşağıda Diğerleri:
Tam URL
<?php
global $base_root;
$base_root . request_uri()
?>
Drupal'ın "Dahili" URL'si
<?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 (usul)
// 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) {
}
}
}
Kaynak: arg () kullanımdan kaldırıldı ve Drupal.org adresinden kaldırılacak
Request_uri () denediniz mi?
http://api.drupal.org/api/drupal/includes--bootstrap.inc/function/request_uri/6
Arg () işlevini kullanmak isteyeceksiniz. Bunu iki yoldan biriyle kullanabilirsiniz,
$args = arg();
Bu temelde size her url bağımsız değişkeninin başka bir değer olduğu bir dizi verir veya aşağıdaki gibi belirli bağımsız değişkenleri kontrol edebilirsiniz:
$arg = arg(0);
Böylece örneğiniz için şunları yapabilirsiniz:
if(!is_null(arg(1)) && arg(0) == 'the' && arg(1) == 'path') { Do something }
ya da bunu tavsiye ederim:
$args = arg();
if(!empty($args[1]) && $args[0] == 'the' && $args[1] == 'path') { Do something }
$arg = implode('/',arg());
Belirli bir URL'ye sahip sayfalar için farklı bir sayfa şablonuna sahip olmak istemiyorsanız, aşağıdaki kodu kullanarak geçerli URL'yi kontrol edebilirsiniz.
if (arg(0) == 'the' && arg(1) == 'path') {
// Add the extra CSS class.
}
url () , geçerli sayfanın URL'sini döndüren işlev değildir; url()
herhangi bir parametre sağlamadan ararsanız (en azından Drupal 7'de ve herhangi bir modül uygulamadan hook_ulr_outbound_alter()
) Drupal kurulumunun temel URL'sini alırsınız . Hiçbir modül işlevden döndürülen değeri değiştirmezse,
arama yapmak url('the/path')
size geri dönecektir "the/path"
; yani, gösterdiğiniz kod her zaman yürütülür ve CSS sınıfı her zaman eklenir.
Drupal'ın istekte bulunduğu kanonik yolu arıyorsanız, Drupal'ın temiz URL'ler kullanıyor olsa bile çevrilmesi gereken $ _GET ['q'] tuşuna basabilirsiniz.
Drupal 8:
artık çalışmadığından arg () alternatifi:
$path_args = explode('/', current_path());
print $path_args[1];
Daha fazla bilgi için: https://www.drupal.org/node/2274705