Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
includes /
deferred /
Delete
Unzip
Name
Size
Permission
Date
Action
AtomicSectionUpdate.php
1.05
KB
-rw-r--r--
2016-11-28 20:20
AutoCommitUpdate.php
1.33
KB
-rw-r--r--
2016-11-28 20:20
CdnCacheUpdate.php
8.13
KB
-rw-r--r--
2016-11-28 20:20
DataUpdate.php
1.68
KB
-rw-r--r--
2016-11-28 20:20
DeferrableCallback.php
193
B
-rw-r--r--
2016-11-28 20:20
DeferrableUpdate.php
258
B
-rw-r--r--
2016-11-28 20:20
DeferredUpdates.php
12.54
KB
-rw-r--r--
2016-11-28 20:20
EnqueueableDataUpdate.php
393
B
-rw-r--r--
2016-11-28 20:20
HTMLCacheUpdate.php
1.41
KB
-rw-r--r--
2016-11-28 20:20
LinksDeletionUpdate.php
6.66
KB
-rw-r--r--
2016-11-28 20:20
LinksUpdate.php
30.07
KB
-rw-r--r--
2016-11-28 20:20
MWCallableUpdate.php
951
B
-rw-r--r--
2016-11-28 20:20
MergeableUpdate.php
385
B
-rw-r--r--
2016-11-28 20:20
SearchUpdate.php
6.93
KB
-rw-r--r--
2016-11-28 20:20
SiteStatsUpdate.php
7.95
KB
-rw-r--r--
2016-11-28 20:20
SqlDataUpdate.php
1.28
KB
-rw-r--r--
2016-11-28 20:20
Save
Rename
<?php /** * Deferrable Update for closure/callback updates via IDatabase::doAtomicSection() * @since 1.27 */ class AtomicSectionUpdate implements DeferrableUpdate, DeferrableCallback { /** @var IDatabase */ private $dbw; /** @var string */ private $fname; /** @var callable|null */ private $callback; /** * @param IDatabase $dbw * @param string $fname Caller name (usually __METHOD__) * @param callable $callback * @see IDatabase::doAtomicSection() */ public function __construct( IDatabase $dbw, $fname, callable $callback ) { $this->dbw = $dbw; $this->fname = $fname; $this->callback = $callback; if ( $this->dbw->trxLevel() ) { $this->dbw->onTransactionResolution( [ $this, 'cancelOnRollback' ], $fname ); } } public function doUpdate() { if ( $this->callback ) { $this->dbw->doAtomicSection( $this->fname, $this->callback ); } } public function cancelOnRollback( $trigger ) { if ( $trigger === IDatabase::TRIGGER_ROLLBACK ) { $this->callback = null; } } public function getOrigin() { return $this->fname; } }