Changeset 10936 for plugins/dwPrototypeTooltipPlugin
- Timestamp:
- 08/19/08 00:17:56 (3 months ago)
- Files:
-
- plugins/dwPrototypeTooltipPlugin/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/dwPrototypeTooltipPlugin/README
r6906 r10936 1 = dwPrototypeTooltipPlugin - Plugin for prototype based tooltips = 1 dwPrototypeTooltipPlugin 2 ======================== 2 3 3 == Overview == 4 Overview 5 -------- 4 6 5 7 The plugin provides tooltips via the prototype library for the symfony php framework. Based on the snippet from Dmitry Parnas. 6 8 7 == License == 9 10 License 11 ------- 12 8 13 9 14 For the full copyright and license information, please view the LICENSE 10 15 file that was distributed with this source code. 11 16 12 == Installation == 17 Installation 18 ------------ 13 19 14 To install the plugin use `symfony plugin-install` command15 {{{16 symfony plugin-install http://plugins.symfony-project.com/dwPrototypeTooltipPlugin17 }}}18 20 19 == Using the plugin == 21 * *Install the plugin* 20 22 21 http://www.symfony-project.com/snippets/snippet/24 23 symfony plugin:install dwPrototypeTooltipPlugin 22 24 23 {{{24 25 25 <?php use_helper('Tooltip') ?> 26 * *Clear you cache* 26 27 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 28 29 29 <div id="some_id">some text</div>30 30 31 <?php echo tooltip_div('some_id', 'css_class', array('style' => 'visibility: hidden'))?> 32 Tooltip text. 33 </div> 31 Using the plugin 32 ---------------- 34 33 35 }}} 34 <?php use_helper('Tooltip') ?> 36 35 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')) ?> 38 37 39 http://tooltip.crtx.org/index.php?page=Demos 38 <div id="some_id">some text</div> 40 39 40 <?php echo tooltip_div('some_id', 'css_class', array('style' => 'visibility: hidden'))?> 41 Tooltip text. 42 </div> 43 44 45 Examples 46 -------- 47 48 * [http://www.symfony-project.com/snippets/snippet/24] 49 * [http://tooltip.crtx.org/index.php?page=Demos]