/** * Display a form to edit a picture * * @access private */ private function display_edit_pic() { Html::form('o', 'post', 'index.php?ns=media&ctl=albums&action=edit&id=' . $this->_albums[0]->_id); $dirname = dirname($this->_pictures[0]->_permalink) . '/'; $fname = basename($this->_pictures[0]->_permalink); Html::ma_edit_image($this->_pictures[0]->_name, $dirname, $fname, $this->_pictures[0]->_description, $this->_pictures[0]->_permalink, $this->_pictures[0]->_id); Html::form('c'); }