ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Settings Class Reference

PHPExcel root directory. More...

+ Collaboration diagram for PHPExcel_Settings:

Static Public Member Functions

static setZipClass ($zipClass)
 Set the Zip Class to use (PCLZip or ZipArchive)
static getZipClass ()
 Return the Zip Class to use (PCLZip or ZipArchive)
static getCacheStorageMethod ()
static getCacheStorageClass ()
static setCacheStorageMethod ($method=PHPExcel_CachedObjectStorageFactory::cache_in_memory, $arguments=array())
static setLocale ($locale)

Data Fields

const PCLZIP = 'PHPExcel_Shared_ZipArchive'
 constants
const ZIPARCHIVE = 'ZipArchive'

Static Private Attributes

static $_zipClass = self::ZIPARCHIVE

Detailed Description

PHPExcel root directory.

Definition at line 38 of file Settings.php.

Member Function Documentation

static PHPExcel_Settings::getCacheStorageClass ( )
static

Definition at line 79 of file Settings.php.

References PHPExcel_CachedObjectStorageFactory\$_cacheStorageClass.

{
} // function getCacheStorageClass()
static PHPExcel_Settings::getCacheStorageMethod ( )
static

Definition at line 74 of file Settings.php.

References PHPExcel_CachedObjectStorageFactory\$_cacheStorageMethod.

{
} // function getCacheStorageMethod()
static PHPExcel_Settings::getZipClass ( )
static

Return the Zip Class to use (PCLZip or ZipArchive)

Returns
string Zip Class to use - PHPExcel_Settings::PCLZip or PHPExcel_Settings::ZipArchive

Definition at line 69 of file Settings.php.

References $_zipClass.

Referenced by PHPExcel_Writer_Excel2007\save().

{
} // function getZipClass()

+ Here is the caller graph for this function:

static PHPExcel_Settings::setCacheStorageMethod (   $method = PHPExcel_CachedObjectStorageFactory::cache_in_memory,
  $arguments = array() 
)
static

Definition at line 84 of file Settings.php.

References PHPExcel_CachedObjectStorageFactory\initialize().

Referenced by ilExcelXMLAdapter\__construct().

{
} // function setCacheStorageMethod()

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static PHPExcel_Settings::setLocale (   $locale)
static

Definition at line 89 of file Settings.php.

References PHPExcel_Calculation\getInstance().

{
return PHPExcel_Calculation::getInstance()->setLocale($locale);
} // function setLocale()

+ Here is the call graph for this function:

static PHPExcel_Settings::setZipClass (   $zipClass)
static

Set the Zip Class to use (PCLZip or ZipArchive)

Parameters
string$zipClassPHPExcel_Settings::PCLZip or PHPExcel_Settings::ZipArchive
Returns
boolean Success or failure

Definition at line 54 of file Settings.php.

{
if (($zipClass == self::PCLZIP) ||
($zipClass == self::ZIPARCHIVE)) {
self::$_zipClass = $zipClass;
return True;
}
return False;
} // function setZipClass()

Field Documentation

PHPExcel_Settings::$_zipClass = self::ZIPARCHIVE
staticprivate

Definition at line 45 of file Settings.php.

Referenced by getZipClass().

const PHPExcel_Settings::PCLZIP = 'PHPExcel_Shared_ZipArchive'

constants

Definition at line 41 of file Settings.php.

const PHPExcel_Settings::ZIPARCHIVE = 'ZipArchive'

Definition at line 42 of file Settings.php.


The documentation for this class was generated from the following file: