Plugin For PlugNedit.
Complete Website Builder Example: Working Website Example.
Plugin Example: Working Example Of Plugin And Form.
Sample Plugin Downloads: Simple Plugin Downloads.
The Plugin has just been made available.
If you need help or the directions are not clear, please contact us.
You can use this plugin for 100 edits per day. If you need more edits you will need to contact
us and request more edits.
If you need modifications or branding please contact us.
480-289-1670
contact@plugnedit.com
HTML Form.
Note: We parse HTML for many XSS (Cross site scripting), however anytime you accept any user input you should parse the HTML on your server.
PlugNedit also uses base64 to bypass many of the IE filters. please read directions on bypassing IE filters.
|
Directions for sending links to users pictures to Plugnedit.
Example of directory of users pictures
or your site: http://yoursite.com/pictures/Unique-users-pictures/example.jpg
the Base Url For PlugNeditBaseUrl in this example Should Be "yoursite.com" PlugneditFiles
should be a ";" separated list:
Example: We Take The Base Url You Give Us And Build Links To Your Pictures.
(YourSite.com/2012/03/Autumn-Leaves1-1000x288.jpg)
Example Format Of Picture To Be Sent In The plugneditfiles Input:
/2012/03/Autumn-Leaves1-1000x288.jpg ; /2012/03/Autumn-Leaves1-150x150.jpg ; /2012/03/Autumn-Leaves1-300x225.jpg ; /2012/04/800px-Chelonia_mydas_got_to_the_surface_to_breath-400x300.jpg ; /2012/04/800px-Chelonia_mydas_got_to_the_surface_to_breath-800x288.jpg ; /2012/04/800px-Chelonia_mydas_got_to_the_surface_to_breath.jpg ; /2012/04/Green-Sea-Turtle-1000x288.jpg ; /2012/04/Green-Sea-Turtle-150x150.jpg ; /2012/04/Green-Sea-Turtle-300x225.jpg ; /2012/04/Green-Sea-Turtle-400x300.jpg ; /2012/04/Green-Sea-Turtle.jpg ; /2012/04/Hawksbill_Turtle-150x150.jpg ; /2012/04/Hawksbill_Turtle-300x224.jpg ; /2012/04/Hawksbill_Turtle-400x300.jpg ; /2012/04/Hawksbill_Turtle-567x288.jpg ; /2012/04/Hawksbill_Turtle.jpg ; /2012/04/Humpback-Whale-1000x288.jpg ; /2012/04/Humpback-Whale-150x150.jpg ; /2012/04/Humpback-Whale-300x225.jpg ; /2012/04/Humpback-Whale-400x300.jpg ; /2012/04/Humpback-Whale.jpg ; /2012/04/buttonw-blue1-150x58.png ; /2012/04/buttonw-blue1.png
Directions For Sending A Plugnedit File Back To Be Edited.
When a user creates a page we will send you the content as form field PlugNeditContent. The content will fit neatly inside a div.
If you need to allow the user to edit the content just send the exact same content we sent you in the PlugNeditContent field to be edited.
Directions For Margins.
Use 0 for no margin, Otherwise us a number for height and width in pixels.
If you want to give the user a 600x500 workspace.
marginheight would be 600
marginwidth would be 500
Filter Base64 for IE.
If you are setting up PlugNedit for use with many users and need to use IE then include the binarycontent input in your form.
Internet Explorer uses many filters so you will need to convert the PlugNeditContent field to Base64 and back to basic HTML.
PHP example to decode when recieving the data: base64_decode($_POST['plugneditcontent']);
Example form inputs:
< textarea id="PlugNeditContent" cols="1" rows="1" style="visibility:hidden;display:none" name="PlugNeditContent" >echo base64_encode( $yourHTML ); < /textarea >
< input type="hidden" id="PlugNeditBinarycontent" name="PlugNeditBinarycontent" value="1" >
Below is a example of content and how it is displayed:
Click Here To See It In The Editor