__('Download Manager', 'wppmpro')); return array_merge($tabs, $newtab); } function mediaUpload() { $errors = array(); if (!empty($_POST)) { $return = media_upload_form_handler(); if (is_string($return)) return $return; if (is_array($return)) $errors = $return; } wp_iframe( array($this, 'mediaForm'), $errors); } function mediaForm($errors){ //include wpdm_tpl_path('media-tab.php'); echo "Coming Soon..."; } }