ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Public Member Functions | |
__construct () | |
Create a new PHPExcel_DocumentProperties. More... | |
getCreator () | |
Get Creator. More... | |
setCreator ($pValue='') | |
Set Creator. More... | |
getLastModifiedBy () | |
Get Last Modified By. More... | |
setLastModifiedBy ($pValue='') | |
Set Last Modified By. More... | |
getCreated () | |
Get Created. More... | |
setCreated ($pValue=null) | |
Set Created. More... | |
getModified () | |
Get Modified. More... | |
setModified ($pValue=null) | |
Set Modified. More... | |
getTitle () | |
Get Title. More... | |
setTitle ($pValue='') | |
Set Title. More... | |
getDescription () | |
Get Description. More... | |
setDescription ($pValue='') | |
Set Description. More... | |
getSubject () | |
Get Subject. More... | |
setSubject ($pValue='') | |
Set Subject. More... | |
getKeywords () | |
Get Keywords. More... | |
setKeywords ($pValue='') | |
Set Keywords. More... | |
getCategory () | |
Get Category. More... | |
setCategory ($pValue='') | |
Set Category. More... | |
getCompany () | |
Get Company. More... | |
setCompany ($pValue='') | |
Set Company. More... | |
getManager () | |
Get Manager. More... | |
setManager ($pValue='') | |
Set Manager. More... | |
getCustomProperties () | |
Get a List of Custom Property Names. More... | |
isCustomPropertySet ($propertyName) | |
Check if a Custom Property is defined. More... | |
getCustomPropertyValue ($propertyName) | |
Get a Custom Property Value. More... | |
getCustomPropertyType ($propertyName) | |
Get a Custom Property Type. More... | |
setCustomProperty ($propertyName, $propertyValue='', $propertyType=NULL) | |
Set a Custom Property. More... | |
__clone () | |
Implement PHP __clone to create a deep clone, not just a shallow copy. More... | |
Static Public Member Functions | |
static | convertProperty ($propertyValue, $propertyType) |
static | convertPropertyType ($propertyType) |
Data Fields | |
const | PROPERTY_TYPE_BOOLEAN = 'b' |
constants More... | |
const | PROPERTY_TYPE_INTEGER = 'i' |
const | PROPERTY_TYPE_FLOAT = 'f' |
const | PROPERTY_TYPE_DATE = 'd' |
const | PROPERTY_TYPE_STRING = 's' |
const | PROPERTY_TYPE_UNKNOWN = 'u' |
Private Attributes | |
$_creator = 'Unknown Creator' | |
$_lastModifiedBy | |
$_created | |
$_modified | |
$_title = 'Untitled Spreadsheet' | |
$_description = '' | |
$_subject = '' | |
$_keywords = '' | |
$_category = '' | |
$_manager = '' | |
$_company = 'Microsoft Corporation' | |
$_customProperties = array() | |
Definition at line 36 of file DocumentProperties.php.
PHPExcel_DocumentProperties::__construct | ( | ) |
Create a new PHPExcel_DocumentProperties.
Definition at line 134 of file DocumentProperties.php.
References $_creator, and time.
PHPExcel_DocumentProperties::__clone | ( | ) |
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 466 of file DocumentProperties.php.
References $key.
|
static |
Definition at line 477 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2007\load(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
|
static |
Definition at line 535 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2007\load().
PHPExcel_DocumentProperties::getCategory | ( | ) |
Get Category.
Definition at line 327 of file DocumentProperties.php.
References $_category.
PHPExcel_DocumentProperties::getCompany | ( | ) |
Get Company.
Definition at line 347 of file DocumentProperties.php.
References $_company.
PHPExcel_DocumentProperties::getCreated | ( | ) |
Get Created.
Definition at line 187 of file DocumentProperties.php.
References $_created.
PHPExcel_DocumentProperties::getCreator | ( | ) |
Get Creator.
Definition at line 147 of file DocumentProperties.php.
References $_creator.
PHPExcel_DocumentProperties::getCustomProperties | ( | ) |
Get a List of Custom Property Names.
Definition at line 387 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getCustomPropertyType | ( | $propertyName | ) |
Get a Custom Property Type.
string | $propertyName |
Definition at line 420 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getCustomPropertyValue | ( | $propertyName | ) |
Get a Custom Property Value.
string | $propertyName |
Definition at line 407 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getDescription | ( | ) |
Get Description.
Definition at line 267 of file DocumentProperties.php.
References $_description.
PHPExcel_DocumentProperties::getKeywords | ( | ) |
Get Keywords.
Definition at line 307 of file DocumentProperties.php.
References $_keywords.
PHPExcel_DocumentProperties::getLastModifiedBy | ( | ) |
Get Last Modified By.
Definition at line 167 of file DocumentProperties.php.
References $_lastModifiedBy.
PHPExcel_DocumentProperties::getManager | ( | ) |
Get Manager.
Definition at line 367 of file DocumentProperties.php.
References $_manager.
PHPExcel_DocumentProperties::getModified | ( | ) |
Get Modified.
Definition at line 217 of file DocumentProperties.php.
References $_modified.
PHPExcel_DocumentProperties::getSubject | ( | ) |
Get Subject.
Definition at line 287 of file DocumentProperties.php.
References $_subject.
PHPExcel_DocumentProperties::getTitle | ( | ) |
PHPExcel_DocumentProperties::isCustomPropertySet | ( | $propertyName | ) |
Check if a Custom Property is defined.
string | $propertyName |
Definition at line 397 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCategory | ( | $pValue = '' | ) |
Set Category.
string | $pValue |
Definition at line 337 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCompany | ( | $pValue = '' | ) |
Set Company.
string | $pValue |
Definition at line 357 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCreated | ( | $pValue = null | ) |
Set Created.
datetime | $pValue |
Definition at line 197 of file DocumentProperties.php.
References time.
PHPExcel_DocumentProperties::setCreator | ( | $pValue = '' | ) |
Set Creator.
string | $pValue |
Definition at line 157 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCustomProperty | ( | $propertyName, | |
$propertyValue = '' , |
|||
$propertyType = NULL |
|||
) |
Set a Custom Property.
string | $propertyName | |
mixed | $propertyValue | |
string | $propertyType | 'i' : Integer 'f' : Floating Point 's' : String 'd' : Date/Time 'b' : Boolean |
Definition at line 440 of file DocumentProperties.php.
References array.
PHPExcel_DocumentProperties::setDescription | ( | $pValue = '' | ) |
Set Description.
string | $pValue |
Definition at line 277 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setKeywords | ( | $pValue = '' | ) |
Set Keywords.
string | $pValue |
Definition at line 317 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setLastModifiedBy | ( | $pValue = '' | ) |
Set Last Modified By.
string | $pValue |
Definition at line 177 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setManager | ( | $pValue = '' | ) |
Set Manager.
string | $pValue |
Definition at line 377 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setModified | ( | $pValue = null | ) |
Set Modified.
datetime | $pValue |
Definition at line 227 of file DocumentProperties.php.
References time.
PHPExcel_DocumentProperties::setSubject | ( | $pValue = '' | ) |
Set Subject.
string | $pValue |
Definition at line 297 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setTitle | ( | $pValue = '' | ) |
Set Title.
string | $pValue |
Definition at line 257 of file DocumentProperties.php.
|
private |
Definition at line 107 of file DocumentProperties.php.
Referenced by getCategory().
|
private |
Definition at line 121 of file DocumentProperties.php.
Referenced by getCompany().
|
private |
Definition at line 65 of file DocumentProperties.php.
Referenced by getCreated().
|
private |
Definition at line 51 of file DocumentProperties.php.
Referenced by __construct(), and getCreator().
|
private |
Definition at line 128 of file DocumentProperties.php.
|
private |
Definition at line 86 of file DocumentProperties.php.
Referenced by getDescription().
|
private |
Definition at line 100 of file DocumentProperties.php.
Referenced by getKeywords().
|
private |
Definition at line 58 of file DocumentProperties.php.
Referenced by getLastModifiedBy().
|
private |
Definition at line 114 of file DocumentProperties.php.
Referenced by getManager().
|
private |
Definition at line 72 of file DocumentProperties.php.
Referenced by getModified().
|
private |
Definition at line 93 of file DocumentProperties.php.
Referenced by getSubject().
|
private |
Definition at line 79 of file DocumentProperties.php.
Referenced by getTitle().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN = 'b' |
constants
Definition at line 39 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE = 'd' |
Definition at line 42 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT = 'f' |
Definition at line 41 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_INTEGER = 'i' |
Definition at line 40 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING = 's' |
Definition at line 43 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_UNKNOWN = 'u' |
Definition at line 44 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2003XML\loadIntoExisting().