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 /** * Base code for update jobs that do something with some secondary * data extracted from article. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file */ /** * Abstract base class for update jobs that do something with some secondary * data extracted from article. */ abstract class DataUpdate implements DeferrableUpdate { /** @var mixed Result from LBFactory::getEmptyTransactionTicket() */ protected $ticket; public function __construct() { // noop } /** * @param mixed $ticket Result of getEmptyTransactionTicket() * @since 1.28 */ public function setTransactionTicket( $ticket ) { $this->ticket = $ticket; } /** * Convenience method, calls doUpdate() on every DataUpdate in the array. * * @param DataUpdate[] $updates A list of DataUpdate instances * @throws Exception * @deprecated Since 1.28 Use DeferredUpdates::execute() */ public static function runUpdates( array $updates ) { foreach ( $updates as $update ) { $update->doUpdate(); } } }