Current Path : /var/www/html/clients/rebirth.e-nk.ru/jscripts/folder_rte_files/ |
Current File : /var/www/html/clients/rebirth.e-nk.ru/jscripts/folder_rte_files/module_email.php |
<html> <head> <title>Insert Div/Span</title> <script type="text/javascript"> <!-- //----------------------------------------- // Attempt to get editor ID //----------------------------------------- var editor_id = <?php print '"'.trim($_REQUEST['editorid']).'";'; ?> var this_module = 'email'; var this_height = 300; var allow_advanced = null; var current_selection = null; /*-------------------------------------------------------------------------*/ // INIT /*-------------------------------------------------------------------------*/ function Init() { var allow_advanced = parent.IPS_editor[ editor_id ].allow_advanced; var current_selection = parent.IPS_editor[ editor_id ].get_selection(); //----------------------------------------- // Set up main close button //----------------------------------------- parent.document.getElementById( editor_id + '_cb-close-window' ).onclick = do_cancel; parent.document.getElementById( editor_id + '_cb-close-window' ).style.cursor = 'pointer'; //----------------------------------------- // Resize window //----------------------------------------- parent.document.getElementById( editor_id + '_htmlblock_' + this_module + '_menu' ).style.height = this_height + 'px'; parent.document.getElementById( editor_id + '_iframeblock_' + this_module + '_menu' ).style.height = ( this_height - 10 ) + 'px'; //----------------------------------------- // Module specific stuff //----------------------------------------- document.getElementById("f_email").focus(); //----------------------------------------- // Set up initial text value //----------------------------------------- var link_regex = ''; var link_text = ''; var link_href = ''; if ( parent.IPS_editor[ editor_id ].use_bbcode && ! parent.IPS_editor[ editor_id ].is_rte ) { link_regex = new RegExp( "\[email=([^\]]+?)\]([^\[]+?)\[/email\]", "i" ); } else { link_regex = new RegExp( "<a href=['\"]mailto\:([^\"']+?)['\"]([^>]+?)?>(.+?)</a>", "i" ); } if ( current_selection.match( link_regex ) ) { link_href = current_selection.replace( link_regex, "$1" ); link_text = current_selection.replace( link_regex, "$3" ); } if ( link_text ) { current_selection = link_text; } if ( link_href ) { document.getElementById("f_email").value = link_href; } document.getElementById("f_text").value = parent.IPS_editor[ editor_id ].strip_empty_html( current_selection ); } /*-------------------------------------------------------------------------*/ // Do cancel /*-------------------------------------------------------------------------*/ function do_cancel() { parent.IPS_editor[ editor_id ].module_remove_control_bar(); return false; } /*-------------------------------------------------------------------------*/ // Do submit (low tech) /*-------------------------------------------------------------------------*/ function do_submit() { var fields = [ "f_email", "f_text" ]; var param = new Object(); //----------------------------------------- // Compile data //----------------------------------------- for ( var i in fields ) { param[ fields[i] ] = document.getElementById( fields[i] ).value; } //----------------------------------------- // Set up required fields //----------------------------------------- var required = { "f_email": "You must enter an email address", "f_text": "You must enter some text for the email body" }; for (var i in required) { var el = document.getElementById(i); if ( ! el.value ) { alert(required[i]); el.focus(); return false; } } var link_html = ''; if ( parent.IPS_editor[ editor_id ].use_bbcode && ! parent.IPS_editor[ editor_id ].is_rte ) { link_html = '[email=' + param['f_email'] + ']' + param['f_text'] + '[/email]'; } else { link_html = '<a href="mailto:' + param['f_email'] + '">' + param['f_text'] + '</a>'; } //----------------------------------------- // Return.. //----------------------------------------- parent.IPS_editor[ editor_id].editor_check_focus(); parent.IPS_editor[ editor_id ].insert_text( link_html ); //----------------------------------------- // Kill Window //----------------------------------------- do_cancel(); return false; } //--> </script> <style type='text/css' media="all"> @import url(rte_popup.css); </style> </head> <body onload="Init()"> <div class="title">Insert Email</div> <form action="" method="get"> <fieldset style="margin-left: 5px;"> <legend>Email Address</legend> <table border="0" width='100%' style="padding: 0px; margin: 0px"> <tbody> <tr> <td><textarea name="email" id="f_email" style='width:100%;height:60px' cols='23' onfocus='this.select()' rows='4'>user@domain.com</textarea></td> </tr> </tbody> </table> </fieldset> <br /> <fieldset style="margin-left: 5px;"> <legend>Email Text</legend> <table border="0" width='100%' style="padding: 0px; margin: 0px"> <tbody> <tr> <td><textarea name="text" id="f_text" style='width:100%;height:70px' cols='23' rows='4'></textarea></td> </tr> </tbody> </table> </fieldset> <br /> <div style="text-align: center;"> <hr /> <button type="button" class='tblbutton' name="ok" onclick="return do_submit();">OK</button> <button type="button" class='tblbutton' name="cancel" onclick="return do_cancel();">Cancel</button> </div> </form> </body> </html>