/var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet
NameSizeModeActions
Calculation/-0755rm
Cell/-0755rm
Chart/-0755rm
Collection/-0755rm
Document/-0755rm
Helper/-0755rm
Reader/-0755rm
RichText/-0755rm
Shared/-0755rm
Style/-0755rm
Worksheet/-0755rm
Writer/-0755rm
Comment.php58010644editdlrm
Exception.php830644editdlrm
HashTable.php36660644editdlrm
IComparable.php1820644editdlrm
IOFactory.php68440644editdlrm
NamedRange.php49090644editdlrm
ReferenceHelper.php441000644editdlrm
Settings.php34710644editdlrm
Spreadsheet.php383120644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php (3471B)
setLocale($locale); } /** * Identify to PhpSpreadsheet the external library to use for rendering charts. * * @param string $rendererClass Class name of the chart renderer * eg: PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph * * @throws Exception */ public static function setChartRenderer($rendererClass) { if (!is_a($rendererClass, IRenderer::class, true)) { throw new Exception('Chart renderer must implement ' . IRenderer::class); } self::$chartRenderer = $rendererClass; } /** * Return the Chart Rendering Library that PhpSpreadsheet is currently configured to use. * * @return null|string Class name of the chart renderer * eg: PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph */ public static function getChartRenderer() { return self::$chartRenderer; } /** * Set default options for libxml loader. * * @param int $options Default options for libxml loader */ public static function setLibXmlLoaderOptions($options) { if ($options === null && defined('LIBXML_DTDLOAD')) { $options = LIBXML_DTDLOAD | LIBXML_DTDATTR; } self::$libXmlLoaderOptions = $options; } /** * Get default options for libxml loader. * Defaults to LIBXML_DTDLOAD | LIBXML_DTDATTR when not set explicitly. * * @return int Default options for libxml loader */ public static function getLibXmlLoaderOptions() { if (self::$libXmlLoaderOptions === null && defined('LIBXML_DTDLOAD')) { self::setLibXmlLoaderOptions(LIBXML_DTDLOAD | LIBXML_DTDATTR); } elseif (self::$libXmlLoaderOptions === null) { self::$libXmlLoaderOptions = true; } return self::$libXmlLoaderOptions; } /** * Sets the implementation of cache that should be used for cell collection. * * @param CacheInterface $cache */ public static function setCache(CacheInterface $cache) { self::$cache = $cache; } /** * Gets the implementation of cache that should be used for cell collection. * * @return CacheInterface */ public static function getCache() { if (!self::$cache) { self::$cache = new Memory(); } return self::$cache; } }