我已經添加了自定義列來存儲公司徽標。我已經使用了moodle的文件API,如:獲取Moodle上傳圖片的路徑
$mform->addElement('filepicker', 'certificatelogo', 'Company Logo', null,
array('maxbytes' => $maxbytes, 'accepted_types' => '*'));
$mform->setDefault('certificatelogo', '0');
$mform->addHelpButton('certificatelogo', 'certificatelogo', 'certificate');
一旦表單被提交,itemid將被存儲在自定義列中。說「648557354」
現在我需要獲得圖像打印證書上的標誌。如何從itemid獲取圖像路徑?我是否需要存儲任何其他信息來檢索圖像?