ILIAS
eassessment Revision 61809
|
Public Member Functions | |
__construct () | |
Create a new PHPExcel_DocumentProperties. | |
getCreator () | |
Get Creator. | |
setCreator ($pValue= '') | |
Set Creator. | |
getLastModifiedBy () | |
Get Last Modified By. | |
setLastModifiedBy ($pValue= '') | |
Set Last Modified By. | |
getCreated () | |
Get Created. | |
setCreated ($pValue=null) | |
Set Created. | |
getModified () | |
Get Modified. | |
setModified ($pValue=null) | |
Set Modified. | |
getTitle () | |
Get Title. | |
setTitle ($pValue= '') | |
Set Title. | |
getDescription () | |
Get Description. | |
setDescription ($pValue= '') | |
Set Description. | |
getSubject () | |
Get Subject. | |
setSubject ($pValue= '') | |
Set Subject. | |
getKeywords () | |
Get Keywords. | |
setKeywords ($pValue= '') | |
Set Keywords. | |
getCategory () | |
Get Category. | |
setCategory ($pValue= '') | |
Set Category. | |
getCompany () | |
Get Company. | |
setCompany ($pValue= '') | |
Set Company. | |
getManager () | |
Get Manager. | |
setManager ($pValue= '') | |
Set Manager. | |
getCustomProperties () | |
Get a List of Custom Property Names. | |
isCustomPropertySet ($propertyName) | |
Check if a Custom Property is defined. | |
getCustomPropertyValue ($propertyName) | |
Get a Custom Property Value. | |
getCustomPropertyType ($propertyName) | |
Get a Custom Property Type. | |
setCustomProperty ($propertyName, $propertyValue='', $propertyType=NULL) | |
Set a Custom Property. | |
__clone () | |
Implement PHP __clone to create a deep clone, not just a shallow copy. |
Static Public Member Functions | |
static | convertProperty ($propertyValue, $propertyType) |
static | convertPropertyType ($propertyType) |
Data Fields | |
const | PROPERTY_TYPE_BOOLEAN = 'b' |
constants | |
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 135 of file DocumentProperties.php.
References $_creator.
PHPExcel_DocumentProperties::__clone | ( | ) |
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 467 of file DocumentProperties.php.
|
static |
Definition at line 478 of file DocumentProperties.php.
Referenced by PHPExcel_Reader_Excel2007\load(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
|
static |
Definition at line 536 of file DocumentProperties.php.
References PROPERTY_TYPE_BOOLEAN, PROPERTY_TYPE_DATE, PROPERTY_TYPE_FLOAT, PROPERTY_TYPE_INTEGER, PROPERTY_TYPE_STRING, and PROPERTY_TYPE_UNKNOWN.
Referenced by PHPExcel_Reader_Excel2007\load().
PHPExcel_DocumentProperties::getCategory | ( | ) |
Get Category.
Definition at line 328 of file DocumentProperties.php.
References $_category.
PHPExcel_DocumentProperties::getCompany | ( | ) |
Get Company.
Definition at line 348 of file DocumentProperties.php.
References $_company.
PHPExcel_DocumentProperties::getCreated | ( | ) |
Get Created.
Definition at line 188 of file DocumentProperties.php.
References $_created.
PHPExcel_DocumentProperties::getCreator | ( | ) |
Get Creator.
Definition at line 148 of file DocumentProperties.php.
References $_creator.
PHPExcel_DocumentProperties::getCustomProperties | ( | ) |
Get a List of Custom Property Names.
Definition at line 388 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getCustomPropertyType | ( | $propertyName | ) |
Get a Custom Property Type.
string | $propertyName |
Definition at line 421 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getCustomPropertyValue | ( | $propertyName | ) |
Get a Custom Property Value.
string | $propertyName |
Definition at line 408 of file DocumentProperties.php.
PHPExcel_DocumentProperties::getDescription | ( | ) |
Get Description.
Definition at line 268 of file DocumentProperties.php.
References $_description.
PHPExcel_DocumentProperties::getKeywords | ( | ) |
Get Keywords.
Definition at line 308 of file DocumentProperties.php.
References $_keywords.
PHPExcel_DocumentProperties::getLastModifiedBy | ( | ) |
Get Last Modified By.
Definition at line 168 of file DocumentProperties.php.
References $_lastModifiedBy.
PHPExcel_DocumentProperties::getManager | ( | ) |
Get Manager.
Definition at line 368 of file DocumentProperties.php.
References $_manager.
PHPExcel_DocumentProperties::getModified | ( | ) |
Get Modified.
Definition at line 218 of file DocumentProperties.php.
References $_modified.
PHPExcel_DocumentProperties::getSubject | ( | ) |
Get Subject.
Definition at line 288 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 398 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCategory | ( | $pValue = '' | ) |
Set Category.
string | $pValue |
Definition at line 338 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCompany | ( | $pValue = '' | ) |
Set Company.
string | $pValue |
Definition at line 358 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCreated | ( | $pValue = null | ) |
Set Created.
datetime | $pValue |
Definition at line 198 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setCreator | ( | $pValue = '' | ) |
Set Creator.
string | $pValue |
Definition at line 158 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 441 of file DocumentProperties.php.
References PROPERTY_TYPE_BOOLEAN, PROPERTY_TYPE_FLOAT, PROPERTY_TYPE_INTEGER, and PROPERTY_TYPE_STRING.
PHPExcel_DocumentProperties::setDescription | ( | $pValue = '' | ) |
Set Description.
string | $pValue |
Definition at line 278 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setKeywords | ( | $pValue = '' | ) |
Set Keywords.
string | $pValue |
Definition at line 318 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setLastModifiedBy | ( | $pValue = '' | ) |
Set Last Modified By.
string | $pValue |
Definition at line 178 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setManager | ( | $pValue = '' | ) |
Set Manager.
string | $pValue |
Definition at line 378 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setModified | ( | $pValue = null | ) |
Set Modified.
datetime | $pValue |
Definition at line 228 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setSubject | ( | $pValue = '' | ) |
Set Subject.
string | $pValue |
Definition at line 298 of file DocumentProperties.php.
PHPExcel_DocumentProperties::setTitle | ( | $pValue = '' | ) |
Set Title.
string | $pValue |
Definition at line 258 of file DocumentProperties.php.
|
private |
Definition at line 108 of file DocumentProperties.php.
Referenced by getCategory().
|
private |
Definition at line 122 of file DocumentProperties.php.
Referenced by getCompany().
|
private |
Definition at line 66 of file DocumentProperties.php.
Referenced by getCreated().
|
private |
Definition at line 52 of file DocumentProperties.php.
Referenced by __construct(), and getCreator().
|
private |
Definition at line 129 of file DocumentProperties.php.
|
private |
Definition at line 87 of file DocumentProperties.php.
Referenced by getDescription().
|
private |
Definition at line 101 of file DocumentProperties.php.
Referenced by getKeywords().
|
private |
Definition at line 59 of file DocumentProperties.php.
Referenced by getLastModifiedBy().
|
private |
Definition at line 115 of file DocumentProperties.php.
Referenced by getManager().
|
private |
Definition at line 73 of file DocumentProperties.php.
Referenced by getModified().
|
private |
Definition at line 94 of file DocumentProperties.php.
Referenced by getSubject().
|
private |
Definition at line 80 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 convertPropertyType(), PHPExcel_Reader_OOCalc\loadIntoExisting(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and setCustomProperty().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE = 'd' |
Definition at line 42 of file DocumentProperties.php.
Referenced by convertPropertyType(), PHPExcel_Reader_OOCalc\loadIntoExisting(), and PHPExcel_Reader_Excel2003XML\loadIntoExisting().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT = 'f' |
Definition at line 41 of file DocumentProperties.php.
Referenced by convertPropertyType(), PHPExcel_Reader_OOCalc\loadIntoExisting(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and setCustomProperty().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_INTEGER = 'i' |
Definition at line 40 of file DocumentProperties.php.
Referenced by convertPropertyType(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and setCustomProperty().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING = 's' |
Definition at line 43 of file DocumentProperties.php.
Referenced by convertPropertyType(), PHPExcel_Reader_OOCalc\loadIntoExisting(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and setCustomProperty().
const PHPExcel_DocumentProperties::PROPERTY_TYPE_UNKNOWN = 'u' |
Definition at line 44 of file DocumentProperties.php.
Referenced by convertPropertyType(), and PHPExcel_Reader_Excel2003XML\loadIntoExisting().