source: sandbox/filemanager/tp/fckeditor/_samples/lasso/sample04.lasso @ 1575

Revision 1575, 2.7 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implentação, melhorias do modulo gerenciador de arquivos

  • Property svn:executable set to *
Line 
1[//lasso
2/*
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * Sample page.
23 */
24]
25<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
26<html>
27        <head>
28                <title>FCKeditor - Sample</title>
29                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
30                <meta name="robots" content="noindex, nofollow">
31                <link href="../sample.css" rel="stylesheet" type="text/css" />
32                <script type="text/javascript">
33                <!--
34function FCKeditor_OnComplete( editorInstance )
35{
36        var oCombo = document.getElementById( 'cmbSkins' ) ;
37
38        // Get the active skin.
39        var sSkin = editorInstance.Config['SkinPath'] ;
40        sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ;
41
42        oCombo.value = sSkin ;
43        oCombo.style.visibility = '' ;
44}
45
46function ChangeSkin( skinName )
47{
48        window.location.href = window.location.pathname + "?Skin=" + skinName ;
49}
50                //-->
51                </script>
52        </head>
53        <body>
54                <h1>FCKeditor - Lasso - Sample 4</h1>
55                This sample shows how to change the editor skin.
56                <hr>
57                <table cellpadding="0" cellspacing="0" border="0">
58                        <tr>
59                                <td>
60                                        Select the skin to load:&nbsp;
61                                </td>
62                                <td>
63                                        <select id="cmbSkins" onchange="ChangeSkin(this.value);" style="VISIBILITY: hidden">
64                                                <option value="default" selected>Default</option>
65                                                <option value="office2003">Office 2003</option>
66                                                <option value="silver">Silver</option>
67                                        </select>
68                                </td>
69                        </tr>
70                </table>
71                <br>
72                <form action="sampleposteddata.lasso" method="post" target="_blank">
73[//lasso
74        include('../../fckeditor.lasso');
75        var('basepath') = response_filepath->split('_samples')->get(1);
76
77        var('myeditor') = fck_editor(
78                -instancename='FCKeditor1',
79                -basepath=$basepath,
80                -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
81        );
82
83        if(action_param('Skin'));
84                var('skin') = (String_ReplaceRegExp: action_param('Skin'), -find='[^a-zA-Z0-9]', -replace='');
85                $myeditor->config = array('SkinPath' = $basepath + 'editor/skins/' + $skin + '/');
86        /if;
87
88        $myeditor->create;
89]
90                        <br>
91                        <input type="submit" value="Submit">
92                </form>
93        </body>
94</html>
Note: See TracBrowser for help on using the repository browser.