12 protected $no_meta_data_creation;
31 if ($default_visibility ===
"public") {
36 $this->log->debug(
"ilObjFile::createProperties, ID: " . $this->getId() .
", Name: " 37 . $this->getFileName() .
", Type: " . $this->getFileType() .
", Size: " 38 . $this->getFileSize() .
", Mode: " . $this->getMode() .
", Name(Bytes): " 42 $DIC->database()->insert(
'file_data', $this->getArrayForDatabase());
45 if ($this->getMode() != self::MODE_FILELIST) {
46 $this->createMetaData();
55 $this->no_meta_data_creation = (bool) $a_status;
60 return !(bool) $this->no_meta_data_creation;
65 return !(bool) $this->no_meta_data_creation;
74 $md_obj =
new ilMD($this->getId(), 0, $this->getType());
75 $technical = $md_obj->addTechnical();
76 $technical->setSize($this->getFileSize());
78 $format = $technical->addFormat();
79 $format->setFormat($this->getFileType());
88 include_once
'Services/MetaData/classes/class.ilMD.php';
89 $md =
new ilMD($this->getId(), 0, $this->getType());
90 if (!is_object($md_gen = $md->getGeneral())) {
93 $title = $this->checkFileExtension($this->getFileName(), $md_gen->getTitle());
94 $md_gen->setTitle($title);
103 include_once
'Services/MetaData/classes/class.ilMD.php';
105 switch ($a_element) {
109 $md =
new ilMD($this->getId(), 0, $this->getType());
110 if (!is_object($md_technical = $md->getTechnical())) {
114 foreach ($md_technical->getFormatIds() as $id) {
115 $md_format = $md_technical->getFormat($id);
116 $this->setFileType($md_format->getFormat());
132 $md_obj =
new ilMD($this->getId(), 0, $this->getType());
133 if (!is_object($technical = $md_obj->getTechnical())) {
134 $technical = $md_obj->addTechnical();
137 $technical->setSize($this->getFileSize());
139 $format_ids = $technical->getFormatIds();
140 if (count($format_ids) > 0) {
141 $format = $technical->getFormat($format_ids[0]);
142 $format->setFormat($this->getFileType());
145 $format = $technical->addFormat();
146 $format->setFormat($this->getFileType());
149 $technical->update();
static _write($a_type, $a_setting, $a_value, $a_user=0, $a_block_id=0)
Write setting to database.
static getBytesForString($a_str)
Return string as byte array Note: Use this for debugging purposes only.
static _getDefaultVisibilityForRefId($a_ref_id)
Get default visibility for reference id.