web-dev-qa-db-ja.com

現在のURLを検出する方法は?

現在私のtemplate.php 私が持っています:

if url('the/path') {
 add the body class...
}

しかし、その機能は私にはうまくいかないようです。

10
hollywood3224

url()は引数として渡されたパスのURLを返すため、次のコードを使用する必要があります。したがって、IFステートメントがTRUEと同等と見なす値を返します(文字列が"0"または空の文字列の場合を除く)。

if ($_GET['q'] == 'the/internal/Drupal/path') {
  // Do stuff
}
6
Dave Reid

Drupalのエイリアスはあなたが探しているものです

<?php
$path = drupal_get_path_alias($_GET['q']);
if ($path == 'the/path') {
  // do stuff
}
?>

以下のその他:

完全なURL

<?php
global $base_root;
$base_root . request_uri()
?>

Drupalの「内部」URL

<?php
$arg = arg();
// Path of 'node/234' -> $arg[0] == 'node' && $arg[1] == 234
?>
12
mikeytown2

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(手続き型)

// 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) {
    }
  }
}

ソース: arg()は非推奨であり、削除されます Drupal.org

4
kenorb
2
Kevin

Arg()関数を使用する必要があります。次の2つの方法のいずれかで使用できます。

$args = arg();

これは基本的に、各url引数が別の値である配列を提供します。または、次のように特定の引数を確認できます。

$arg = arg(0);

だからあなたの例では、あなたは行うことができます:

if(!is_null(arg(1)) && arg(0) == 'the' && arg(1) == 'path') { Do something  }

または私はこれをお勧めします:

$args = arg();
if(!empty($args[1]) && $args[0] == 'the' && $args[1] == 'path') { Do something  }
2
Mike L.

特定のURLを持つページに別のページテンプレートを使用したくない場合は、次のコードを使用して現在のURLを確認できます。

_if (arg(0) == 'the' && arg(1) == 'path') {
  // Add the extra CSS class.
}
_

rl() は、現在のページのURLを返す関数ではありません。パラメータを指定せずにurl()を呼び出すと、(少なくともDrupal 7、およびhook_ulr_outbound_alter()を実装するモジュールなしで)のベースURLが取得されますDrupalインストール。
url('the/path')を呼び出すと、関数から返された値を変更しているモジュールがない場合、_"the/path"_が返されます。つまり、表示したコードは常に実行され、CSSクラスは常に追加されます。

1
kiamlaluno

Drupal 8:

arg()はもう機能しないため、代わりに:

$path_args = explode('/', current_path());
print $path_args[1];

続きを読む: https://www.drupal.org/node/2274705

0
Pouya Sanooei

Drupalがリクエストを処理する正規のパスを探している場合は、$ _ GET ['q']を押すことができます。これは、DrupalがクリーンなURLを使用している場合でも変換されるはずです。

0
user556