Development

Changeset 10936 for plugins/dwPrototypeTooltipPlugin

You must first sign up to be able to contribute.

Show
Ignore:
Timestamp:
08/19/08 00:17:56 (3 months ago)
Author:
dwhittle
Message:

dwPrototypePlugin: converted README to markdown format

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/dwPrototypeTooltipPlugin/README

    r6906 r10936  
    1 = dwPrototypeTooltipPlugin - Plugin for prototype based tooltips = 
     1dwPrototypeTooltipPlugin 
     2========================  
    23 
    3 == Overview == 
     4Overview 
     5-------- 
    46 
    57The plugin provides tooltips via the prototype library for the symfony php framework. Based on the snippet from Dmitry Parnas. 
    68 
    7 == License == 
     9 
     10License 
     11-------  
     12 
    813 
    914For the full copyright and license information, please view the LICENSE 
    1015file that was distributed with this source code. 
    1116 
    12 == Installation == 
     17Installation 
     18------------  
    1319 
    14 To install the plugin use `symfony plugin-install` command 
    15 {{{ 
    16 symfony plugin-install http://plugins.symfony-project.com/dwPrototypeTooltipPlugin 
    17 }}} 
    1820 
    19 == Using the plugin == 
     21  * *Install the plugin* 
    2022 
    21 http://www.symfony-project.com/snippets/snippet/24 
     23    symfony plugin:install dwPrototypeTooltipPlugin 
    2224 
    23 {{{ 
    2425 
    25 <?php use_helper('Tooltip') ?> 
     26  * *Clear you cache* 
    2627 
    27 <?php echo tooltips_js('autoMoveToCursor=false showEvent=click', 'appear=true blindDown=true', 'blindUp=true', array('style.position' => 'absolute'), array('style.position' => 'absolute')) ?> 
     28    symfony cc 
    2829 
    29 <div id="some_id">some text</div> 
    3030 
    31 <?php echo tooltip_div('some_id', 'css_class', array('style' => 'visibility: hidden'))?> 
    32   Tooltip text. 
    33 </div> 
     31Using the plugin 
     32----------------  
    3433 
    35 }}} 
     34    <?php use_helper('Tooltip') ?> 
    3635 
    37 == Examples == 
     36    <?php echo tooltips_js('autoMoveToCursor=false showEvent=click', 'appear=true blindDown=true', 'blindUp=true', array('style.position' => 'absolute'), array('style.position' => 'absolute')) ?> 
    3837 
    39 http://tooltip.crtx.org/index.php?page=Demos 
     38    <div id="some_id">some text</div> 
    4039 
     40     <?php echo tooltip_div('some_id', 'css_class', array('style' => 'visibility: hidden'))?> 
     41      Tooltip text. 
     42    </div> 
     43 
     44 
     45Examples 
     46-------- 
     47 
     48  * [http://www.symfony-project.com/snippets/snippet/24] 
     49  * [http://tooltip.crtx.org/index.php?page=Demos]