Revision history for ImageShackUpload
Revision [19021]
Last edited on 2008-01-28 00:13:46 by DavePreston [Modified links pointing to docs server]No Differences
Revision [15989]
Edited on 2007-01-21 14:32:19 by DavePreston [Modified links pointing to docs server]Additions:
(!empty($vars['w'])) ? $w=$vars['w']: $w="300";
(!empty($vars['h'])) ? $h=$vars['h']: $h="90";
(!empty($vars['h'])) ? $h=$vars['h']: $h="90";
Deletions:
(!empty($vars['h'])) ? $h=$vars['h']: $h="70";
Additions:
====Insert ""ImageShack"".us upload form on page in an iframe ====
One of the ways I wanted to make life easier for my users was to try to make it easier for them to insert remotely-hosted images.
The first step was to create a simple action to insert an ""ImageShack"" upload form (see http://reg.imageshack.us/content.php?page=syndicate) on a wiki page thus...
* imageshack.php
* Insert ImageShack.us upload form on page in an iframe
* for details, terms & conditions etc visit http://reg.imageshack.us/content.php?page=syndicate
* Usage {{imageshack txtcolor="224466" w="280" h="70"}}
* (All parameters are optional)
* (txtcolor takes an rgb colour without the # : default is ImageShack default)
* (w is iframe width : default is ImageShack default)
* (h is iframe height : default is ImageShack default)
(!empty($vars['txtcolor'])) ? $txtcolor=$vars['txtcolor']: $txtcolor="111111";
(!empty($vars['w'])) ? $w=$vars['w']: $w="280";
(!empty($vars['h'])) ? $h=$vars['h']: $h="70";
echo "<iframe src=\"http://imageshack.us/iframe.php?txtcolor=$txtcolor&type=blank\" scrolling=\"no\" frameborder=\"0\" width=\"$w\" height=\"$h\"> You must have an iframe-compatable browser to view the ImageShack.us upload form.</iframe>";
Then I created a page using this action to display the form and giving some help on using images hosted by ""ImageShack"" on wikka pages.
One of the ways I wanted to make life easier for my users was to try to make it easier for them to insert remotely-hosted images.
The first step was to create a simple action to insert an ""ImageShack"" upload form (see http://reg.imageshack.us/content.php?page=syndicate) on a wiki page thus...
* imageshack.php
* Insert ImageShack.us upload form on page in an iframe
* for details, terms & conditions etc visit http://reg.imageshack.us/content.php?page=syndicate
* Usage {{imageshack txtcolor="224466" w="280" h="70"}}
* (All parameters are optional)
* (txtcolor takes an rgb colour without the # : default is ImageShack default)
* (w is iframe width : default is ImageShack default)
* (h is iframe height : default is ImageShack default)
(!empty($vars['txtcolor'])) ? $txtcolor=$vars['txtcolor']: $txtcolor="111111";
(!empty($vars['w'])) ? $w=$vars['w']: $w="280";
(!empty($vars['h'])) ? $h=$vars['h']: $h="70";
echo "<iframe src=\"http://imageshack.us/iframe.php?txtcolor=$txtcolor&type=blank\" scrolling=\"no\" frameborder=\"0\" width=\"$w\" height=\"$h\"> You must have an iframe-compatable browser to view the ImageShack.us upload form.</iframe>";
Then I created a page using this action to display the form and giving some help on using images hosted by ""ImageShack"" on wikka pages.
Deletions:
This is the simplest action imaginable, but I find it useful and I hope someone else does, too.
* stubtext.php
* Insert stub explanation text.
*
* Usage {{stubtext}}
* (no parameters)
echo $this->Format('>>===Note===This page is a [[Stub]] - you can help make this Wiki more useful by adding information to it. Just click on the "Edit page" link at the bottom left of the page or double-click on the page text. (You will have to [[UserSettings Register]] as a member first.)>>');
You may need to make minor changes to reflect a different page layout and/or delete the requirement to register, or whatever, but it does save a bit of time and provide a nice consistency of layout.