property TreeDataUnitTest::$links

Dummy link structure acceptable for menu_tree_data().

File

drupal/core/modules/system/lib/Drupal/system/Tests/Menu/TreeDataUnitTest.php, line 19
Definition of Drupal\system\Tests\Menu\TreeDataUnitTest.

Class

TreeDataUnitTest
Menu tree data related tests.

Namespace

Drupal\system\Tests\Menu

Code

var $links = array(
  1 => array(
    'mlid' => 1,
    'depth' => 1,
  ),
  2 => array(
    'mlid' => 2,
    'depth' => 1,
  ),
  3 => array(
    'mlid' => 3,
    'depth' => 2,
  ),
  4 => array(
    'mlid' => 4,
    'depth' => 3,
  ),
  5 => array(
    'mlid' => 5,
    'depth' => 1,
  ),
);