Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: file_send_to_editor_url

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
733           $href = $_POST['insertonly']['href'];
734           if ( !empty($href) && !strpos($href, '://') )
735                $href = "http://$href";
736
737           $title = esc_attr($_POST['insertonly']['title']);
738           if ( empty($title) )
739                $title = basename($href);
740           if ( !empty($title) && !empty($href) )
741                $html = "<a href='" . esc_url($href) . "' >$title</a>";
742           $html = apply_filters('file_send_to_editor_url', $html, esc_url_raw($href), $title);
743           return media_send_to_editor($html);
744      }
745
746      if ( !empty($_POST) ) {
747           $return = media_upload_form_handler();
748
749           if ( is_string($return) )
750                return $return;
751           if ( is_array($return) )