Your IP : 172.28.240.42


Current Path : /var/www/html/clients/rebirth.e-nk.ru/jscripts/folder_rte_files/
Upload File :
Current File : /var/www/html/clients/rebirth.e-nk.ru/jscripts/folder_rte_files/module_table.php

<html>
<head>
  <meta HTTP-EQUIV="Pragma"  CONTENT="no-cache">
  <meta HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
  <meta HTTP-EQUIV="Expires" CONTENT="Mon, 06 May 1996 04:57:00 GMT">
  <title>Insert Table</title>
	<script type="text/javascript">
	<!--
	
	//-----------------------------------------
    // Attempt to get editor ID
    //-----------------------------------------
    
    var editor_id   = <?php print '"'.trim($_REQUEST['editorid']).'";'; ?>
	var this_module = 'table';
	var this_height = 350;
	
	/*-------------------------------------------------------------------------*/
	// INIT
	/*-------------------------------------------------------------------------*/
	
	function Init()
	{
		//-----------------------------------------
		// 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_rows").focus();
	}
	
	/*-------------------------------------------------------------------------*/
	// Do cancel
	/*-------------------------------------------------------------------------*/
	
	function do_cancel()
	{
		parent.IPS_editor[ editor_id ].module_remove_control_bar();
	 	return false;
	}
	
	/*-------------------------------------------------------------------------*/
	// Do submit (low tech)
	/*-------------------------------------------------------------------------*/
	
	function do_submit()
	{
        //-----------------------------------------
        // Fail safe
        //-----------------------------------------
        
        if ( ! editor_id )
        {
            alert("Could not locate the editor ID");
            return false;
        }
        
        //-----------------------------------------
        // Set up required fields
        //-----------------------------------------
        
		var required = {
						  "f_rows": "You must enter a number of rows",
						  "f_cols": "You must enter a number of columns"
					   };
					
		for (var i in required)
		{
			var el = document.getElementById(i);
		  
			if ( ! el.value )
			{
				alert(required[i]);
				el.focus();
				return false;
			}
		}
		
		var fields = ["f_rows" , "f_cols"  , "f_width"  , "f_unit",
					  "f_align", "f_border", "f_spacing", "f_padding"];
					  
		var param = new Object();
		
		//-----------------------------------------
		// Compile data
		//-----------------------------------------
		
		for ( var i in fields )
		{
			param[ fields[i] ] = document.getElementById( fields[i] ).value;
		}
		
		//-----------------------------------------
		// Now prep the table
		//-----------------------------------------
		
		var doc  = parent.IPS_editor[ editor_id ].editor_document;

    	//-----------------------------------------
    	// create the table element inside a wrapper
    	// div that we can use innerHTML on
    	//-----------------------------------------
        
        var wrap_div = document.createElement("DIV");
    	var table    = document.createElement("table");
        
        wrap_div.appendChild( table );
        
    	//-----------------------------------------
    	// assign the given arguments
    	//-----------------------------------------

    	for (var field in param)
    	{
    		var value = param[field];

    		if ( ! value )
    		{
    			continue;
    		}

    		switch (field)
    		{
    			case "f_width"   : table.style.width = value + param["f_unit"]; break;
    			case "f_align"   : table.align	     = value; break;
    			case "f_border"  : table.border	     = parseInt(value); break;
    			case "f_spacing" : table.cellspacing = parseInt(value); break;
    			case "f_padding" : table.cellpadding = parseInt(value); break;
    		}
    	}

    	var tbody = document.createElement("tbody");

    	table.appendChild(tbody);

    	for (var i = 0; i < param["f_rows"]; ++i)
    	{
    		var tr = document.createElement("tr");

    		tbody.appendChild(tr);

    		for (var j = 0; j < param["f_cols"]; ++j)
    		{
    			var td = document.createElement("td");

    			tr.appendChild(td);

    			//-------------------------------
    			// Mozilla likes to see something
    			// inside the cell.
    			//-------------------------------

    			( ! parent.IPS_editor[ editor_id ].is_ie )
    			{
    				td.appendChild( document.createElement("br") );
    			}
    		}
    	}

		//-----------------------------------------
		// Clean up
		//-----------------------------------------
		
		wrap_div.innerHTML =  parent.IPS_editor[ editor_id ].clean_html( wrap_div.innerHTML );
        
        //-----------------------------------------
        // Return..
        //-----------------------------------------

		parent.IPS_editor[ editor_id].editor_check_focus();
       
        parent.IPS_editor[ editor_id ].insert_text( wrap_div.innerHTML );
		
		//-----------------------------------------
		// Kill node
		//-----------------------------------------
		
		//doc.removeChild( wrap_div );
		
		//-----------------------------------------
		// Kill Window
		//-----------------------------------------
		
		do_cancel();
	}
	//-->
	</script>

<style type='text/css' media="all">
@import url(rte_popup.css);
</style>

</head>

<body onload="Init()">

<div class="title">Insert Table</div>

<form action="" method="get">
<fieldset style="margin-left: 5px;">
<legend>Basics</legend>
<table border="0" width='100%' style="padding: 0px; margin: 0px">
  <tbody>
  <tr>
    <td>Rows:</td>
    <td><input type="text" name="rows" id="f_rows" size="5" title="Number of rows" value="2" /></td>
  </tr>
  <tr>
    <td>Cols:</td>
    <td><input type="text" name="cols" id="f_cols" size="5" title="Number of columns" value="4" /></td>
  </tr>
  <tr>
    <td>Width:</td>
    <td><input type="text" name="width" id="f_width" size="5" title="Width of the table" value="100" />
        <select size="1" name="unit" id="f_unit" title="Width unit">
            <option value="%" selected="1"  >Percent</option>
            <option value="px"              >Pixels</option>
            <option value="em"              >Em</option>
        </select>
    </td>
  </tr>
  </tbody>
</table>
</fieldset>

<br />

<fieldset style="margin-left: 5px;">
<legend>Layout</legend>
<table border="0"  width='100%' >
  <tbody>
  <tr>
    <td>Alignment:</td>
    <td>
        <select size="1" name="align" id="f_align"
          title="Positioning of this image">
          <option value="" selected="1"                >Not set</option>
          <option value="left"                         >Left</option>
          <option value="right"                        >Right</option>
          <option value="texttop"                      >Texttop</option>
          <option value="absmiddle"                    >Absmiddle</option>
          <option value="baseline"                     >Baseline</option>
          <option value="absbottom"                    >Absbottom</option>
          <option value="bottom"                       >Bottom</option>
          <option value="middle"                       >Middle</option>
          <option value="top"                          >Top</option>
        </select>
    </td>
  </tr>
  </tbody>
</table>
</fieldset>

<br />

<fieldset style="margin-left: 5px;">
<legend>Spacing</legend>
<table border="0"  width='100%' style="padding: 0px; margin: 0px">
  <tbody>
    <tr>
      <td>Cell Spacing:</td>
      <td><input type="text" name="cols" id="f_spacing" size="5" title="Cell Spacing" value="0" /></td>
    </tr>
    <tr>
      <td>Cell Padding:</td>
      <td><input type="text" name="cols" id="f_padding" size="5" title="Cell Padding" value="0" /></td>
    </tr>
    <tr>
      <td>Border thickness:</td>
      <td><input type="text" name="border" id="f_border" size="5" value="1" title="Leave empty for no border" />
      </td>
    </tr>
  </tbody>
</table>
</fieldset>

<hr />
<div align='center'>
	<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>