Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Calculation
--
ren
Cell
--
ren
Chart
--
ren
Collection
--
ren
Document
--
ren
Helper
--
ren
Reader
--
ren
RichText
--
ren
Shared
--
ren
Style
--
ren
Worksheet
--
ren
Writer
--
ren
CellReferenceHelper.php
4.256KB
edt
ren
Comment.php
7.354KB
edt
ren
DefinedName.php
6.413KB
edt
ren
Exception.php
0.081KB
edt
ren
HashTable.php
3.756KB
edt
ren
IComparable.php
0.178KB
edt
ren
IOFactory.php
8.809KB
edt
ren
NamedFormula.php
0.95KB
edt
ren
NamedRange.php
1.221KB
edt
ren
ReferenceHelper.php
54.033KB
edt
ren
Settings.php
5.769KB
edt
ren
Spreadsheet.php
45.721KB
edt
ren
Theme.php
7.003KB
edt
ren
<?php namespace PhpOffice\PhpSpreadsheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; class NamedFormula extends DefinedName { /** * Create a new Named Formula. */ public function __construct( string $name, ?Worksheet $worksheet = null, ?string $formula = null, bool $localOnly = false, ?Worksheet $scope = null ) { // Validate data if (!isset($formula)) { throw new Exception('You must specify a Formula value for a Named Formula'); } parent::__construct($name, $worksheet, $formula, $localOnly, $scope); } /** * Get the formula value. */ public function getFormula(): string { return $this->value; } /** * Set the formula value. */ public function setFormula(string $formula): self { if (!empty($formula)) { $this->value = $formula; } return $this; } }
<=Back
Liking