NAVIGATION
This shows you the differences between two versions of the page.
|
english:other-enhancements:backend:custom-links-in-home:filebrowserx [2010/11/11 18:05] Knut Heermann (flip-flop) |
english:other-enhancements:backend:custom-links-in-home:filebrowserx [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 28: | Line 28: | ||
| \\ | \\ | ||
| + | |||
| ====== Program calling ====== | ====== Program calling ====== | ||
| - | |||
| - | Best call is done from the file startup.php. -> [[english/other-enhancements/backend/custom-links-in-home]] | ||
| **The JavaScript call:** | **The JavaScript call:** | ||
| Line 43: | Line 42: | ||
| **file browser:** | **file browser:** | ||
| <code js>onclick="tmt_winOpen('filebrowserX.php?opt=4','imageBrowser','width=720,height=550,left=8,top=8,scrollbars=yes,resizable=yes,status=yes',1)"</code> | <code js>onclick="tmt_winOpen('filebrowserX.php?opt=4','imageBrowser','width=720,height=550,left=8,top=8,scrollbars=yes,resizable=yes,status=yes',1)"</code> | ||
| + | |||
| + | \\ | ||
| + | |||
| + | A comfortable call is done from the file startup.php. -> [[english/other-enhancements/backend/custom-links-in-home]] | ||
| + | |||
| + | **The simple variant in startup.php:** | ||
| + | <code> | ||
| + | <a href="javascript:;" title="<?php echo $BL['be_cnt_openimagebrowser'];?>" onclick="tmt_winOpen('filebrowserX.php?opt=0','imageBrowser','width=720,height=550,left=8,top=8,scrollbars=yes,resizable=yes,status=yes',1)"> | ||
| + | <img src="img/button/open_image_button.gif" alt="" border="0" /> <?php echo $BL['be_cnt_openimagebrowser'];?></a> | ||
| + | |||
| + | <a href="javascript:;" title="<?php echo $BL['be_cnt_openmediabrowser'];?>" onclick="tmt_winOpen('filebrowserX.php?opt=2','imageBrowser','width=720,height=550,left=8,top=8,scrollbars=yes,resizable=yes,status=yes',1)"> | ||
| + | <img src="img/button/open_image_button.gif" alt="" border="0" /> <?php echo $BL['be_cnt_openmediabrowser'];?></a> | ||
| + | |||
| + | <a href="javascript:;" title="<?php echo $BL['be_cnt_openfilebrowser'];?>" onclick="tmt_winOpen('filebrowserX.php?opt=4','imageBrowser','width=720,height=550,left=8,top=8,scrollbars=yes,resizable=yes,status=yes',1)"> | ||
| + | <img src="img/button/open_image_button.gif" alt="" border="0" /> <?php echo $BL['be_cnt_openfilebrowser'];?></a><br /> | ||
| + | </code> | ||