Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 1
 
 
Reply with quote Download Post 
Post How Can Make One BBcode?? 
 
hello everybody I have a question xD

How can make my BBcode xD
I want create one BBcode to download external xD for example rapidshare, zshare or other and replace the URL(www.rapidshare.com/xxxxxx.zip) to one image, example

dwload
down



This image whit link to URL external

1. press to icon to bbcode xD

lorry_link


2. show URL box to URL external

capture1


and show the image to the link This way



Please!!!! xD  

And thanks

Pd. This images is for that my english not is good xD Thanks
 




____________
www.dBoror.com [Danilo]
 
DaniloSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
The creation of this mod is interesant =D

Please Make this MOD is very nice of sites of Download that KoKForos =D

Edit: This a example or image that download

kokforos-download1

Other sugerence, it's posible selection the mirror, for example Rapidshare, Megaupload, Gigasize, etc...  
 




____________
? JHOSMAN - Webmaster
 
JHOSMANSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
I'll do something for you

Greets!
 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
Installation instructions
  1. Upload mid_6bc4a2494f9ab34b93dc6033328027ea_lorry_link to images/bbcb_mg/images/gif/download.gif
    Upload mid_054178cae78867d059bca45112443a4f_down to images/download.png
  2. Apply code changes:
    Code: [Download] [Hide] [Select]
    #
    #-----[ OPEN ]------------------------------------------
    #
    includes/bbcode.php
    #
    #-----[ FIND ]------------------------------------------
    #
                'codeblock' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
                'download' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ FIND ]------------------------------------------
    #
            // OPACITY
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
            // DOWNLOAD
            if($tag === 'download')
            {
                if(empty($content) || $this->is_sig)
                {
                    return $error;
                }
                if (isset($item['params']['target']))
                {
                    $target = $item['params']['target'];
                }
                else
                {
                    $target = '_blank';
                }
                
                    $html = '<a href="' . $content . '" target="' . $target . '"><img src="' . $phpbb_root_path . 'images/download.png" alt="' . $lang['Download'] . '" title="' . $lang['Download'] . '" border="0" /></a>';
                
                return array(
                    'valid' => true,
                    'html' => $html
                );
            }
    #
    #-----[ OPEN ]------------------------------------------
    #
    language/lang_english/bbcb_mg.js
    #
    #-----[ FIND ]------------------------------------------
    #
    s_posticyimage = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_insert = 'Please write file URL';
    #
    #-----[ FIND ]------------------------------------------
    #
    s_smiley_creator = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_help = 'Download: [download]URL[/download] Insert a link to a file';
    #
    #-----[ FIND ]------------------------------------------
    #
    '[emff]','[/emff]'
    #
    #-----[ REPLACE WITH ]------------------------------------------
    #
    '[emff]','[/emff]',
    '[download]','[/download]'
    #
    #-----[ FIND ]------------------------------------------
    #
            var ToAdd = "[url=" + enterURL + "]" + enterTITLE + "[/url]";
        }
        PostWrite(ToAdd);
    }
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    function BBCdownload()
    {
        var FoundErrors = '';
        var enterURL = prompt(s_download_insert, s_url_insert_tip);
        if (!enterURL)
        {
            FoundErrors += s_url_error;
        }
        if (FoundErrors)
        {
            alert(s_gen_error + FoundErrors);
            return;
        }

        var ToAdd = "[download]" + enterURL + "[/download]";
        PostWrite(ToAdd);
    }
    #
    #-----[ OPEN ]------------------------------------------
    #
    templates/mg_themes/bbcb_mg.tpl
    #
    #-----[ FIND ]------------------------------------------
    #
                        <a href="javascript:BBCurl()" accesskey="w"><img src="{BBCB_MG_IMG_PATH}url{BBCB_MG_IMG_EXT}" name="url" onMouseOver="helpline('url')" alt="{L_BBCB_MG_URL}" title="{L_BBCB_MG_URL}" class="bbimages" /></a>
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
                        <a href="javascript:BBCdownload()" accesskey="d"><img src="{BBCB_MG_IMG_PATH}download{BBCB_MG_IMG_EXT}" name="download" onMouseOver="helpline('download')" alt="{L_BBCB_MG_DOWNLOAD}" title="{L_BBCB_MG_DOWNLOAD}" class="bbimages" /></a>

  3. Re-Apply this to all styles and languages you have installed.


Greets!
 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
KasLimon wrote: [View Post]
Installation instructions
  1. Upload mid_6bc4a2494f9ab34b93dc6033328027ea_lorry_link to images/bbcb_mg/images/gif/download.gif
    Upload mid_054178cae78867d059bca45112443a4f_down to images/download.png
  2. Apply code changes:
    Code: [Download] [Hide] [Select]
    #
    #-----[ OPEN ]------------------------------------------
    #
    includes/bbcode.php
    #
    #-----[ FIND ]------------------------------------------
    #
                'codeblock' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
                'download' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ FIND ]------------------------------------------
    #
            // OPACITY
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
            // DOWNLOAD
            if($tag === 'download')
            {
                if(empty($content) || $this->is_sig)
                {
                    return $error;
                }
                if (isset($item['params']['target']))
                {
                    $target = $item['params']['target'];
                }
                else
                {
                    $target = '_blank';
                }
                
                    $html = '<a href="' . $content . '" target="' . $target . '"><img src="' . $phpbb_root_path . 'images/download.png" alt="' . $lang['Download'] . '" title="' . $lang['Download'] . '" border="0" /></a>';
                
                return array(
                    'valid' => true,
                    'html' => $html
                );
            }
    #
    #-----[ OPEN ]------------------------------------------
    #
    language/lang_english/bbcb_mg.js
    #
    #-----[ FIND ]------------------------------------------
    #
    s_posticyimage = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_insert = 'Please write file URL';
    #
    #-----[ FIND ]------------------------------------------
    #
    s_smiley_creator = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_help = 'Download: [download]URL[/download] Insert a link to a file';
    #
    #-----[ FIND ]------------------------------------------
    #
    '[emff]','[/emff]'
    #
    #-----[ REPLACE WITH ]------------------------------------------
    #
    '[emff]','[/emff]',
    '[download]','[/download]'
    #
    #-----[ FIND ]------------------------------------------
    #
            var ToAdd = "[url=" + enterURL + "]" + enterTITLE + "[/url]";
        }
        PostWrite(ToAdd);
    }
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    function BBCdownload()
    {
        var FoundErrors = '';
        var enterURL = prompt(s_download_insert, s_url_insert_tip);
        if (!enterURL)
        {
            FoundErrors += s_url_error;
        }
        if (FoundErrors)
        {
            alert(s_gen_error + FoundErrors);
            return;
        }

        var ToAdd = "[download]" + enterURL + "[/download]";
        PostWrite(ToAdd);
    }
    #
    #-----[ OPEN ]------------------------------------------
    #
    templates/mg_themes/bbcb_mg.tpl
    #
    #-----[ FIND ]------------------------------------------
    #
                        <a href="javascript:BBCurl()" accesskey="w"><img src="{BBCB_MG_IMG_PATH}url{BBCB_MG_IMG_EXT}" name="url" onMouseOver="helpline('url')" alt="{L_BBCB_MG_URL}" title="{L_BBCB_MG_URL}" class="bbimages" /></a>
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
                        <a href="javascript:BBCdownload()" accesskey="d"><img src="{BBCB_MG_IMG_PATH}download{BBCB_MG_IMG_EXT}" name="download" onMouseOver="helpline('download')" alt="{L_BBCB_MG_DOWNLOAD}" title="{L_BBCB_MG_DOWNLOAD}" class="bbimages" /></a>

  3. Re-Apply this to all styles and languages you have installed.


Greets!



This modificatios is apply to BBcode "Hide"

Thanks for the MOD it's very nice  
 




____________
? JHOSMAN - Webmaster
 
JHOSMANSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
TTHANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS THANKS

xD is very very nice thanks    
 




____________
www.dBoror.com [Danilo]
 
DaniloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
JHOSMAN wrote: [View Post]
KasLimon wrote: [View Post]
Installation instructions
  1. Upload mid_6bc4a2494f9ab34b93dc6033328027ea_lorry_link to images/bbcb_mg/images/gif/download.gif
    Upload mid_054178cae78867d059bca45112443a4f_down to images/download.png
  2. Apply code changes:
    Code: [Download] [Hide] [Select]
    #
    #-----[ OPEN ]------------------------------------------
    #
    includes/bbcode.php
    #
    #-----[ FIND ]------------------------------------------
    #
                'codeblock' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
                'download' => array(
                        'nested' => false,
                        'inurl' => false,
                        ),
    #
    #-----[ FIND ]------------------------------------------
    #
            // OPACITY
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
            // DOWNLOAD
            if($tag === 'download')
            {
                if(empty($content) || $this->is_sig)
                {
                    return $error;
                }
                if (isset($item['params']['target']))
                {
                    $target = $item['params']['target'];
                }
                else
                {
                    $target = '_blank';
                }
                
                    $html = '<a href="' . $content . '" target="' . $target . '"><img src="' . $phpbb_root_path . 'images/download.png" alt="' . $lang['Download'] . '" title="' . $lang['Download'] . '" border="0" /></a>';
                
                return array(
                    'valid' => true,
                    'html' => $html
                );
            }
    #
    #-----[ OPEN ]------------------------------------------
    #
    language/lang_english/bbcb_mg.js
    #
    #-----[ FIND ]------------------------------------------
    #
    s_posticyimage = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_insert = 'Please write file URL';
    #
    #-----[ FIND ]------------------------------------------
    #
    s_smiley_creator = '
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    s_download_help = 'Download: [download]URL[/download] Insert a link to a file';
    #
    #-----[ FIND ]------------------------------------------
    #
    '[emff]','[/emff]'
    #
    #-----[ REPLACE WITH ]------------------------------------------
    #
    '[emff]','[/emff]',
    '[download]','[/download]'
    #
    #-----[ FIND ]------------------------------------------
    #
            var ToAdd = "[url=" + enterURL + "]" + enterTITLE + "[/url]";
        }
        PostWrite(ToAdd);
    }
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
    function BBCdownload()
    {
        var FoundErrors = '';
        var enterURL = prompt(s_download_insert, s_url_insert_tip);
        if (!enterURL)
        {
            FoundErrors += s_url_error;
        }
        if (FoundErrors)
        {
            alert(s_gen_error + FoundErrors);
            return;
        }

        var ToAdd = "[download]" + enterURL + "[/download]";
        PostWrite(ToAdd);
    }
    #
    #-----[ OPEN ]------------------------------------------
    #
    templates/mg_themes/bbcb_mg.tpl
    #
    #-----[ FIND ]------------------------------------------
    #
                        <a href="javascript:BBCurl()" accesskey="w"><img src="{BBCB_MG_IMG_PATH}url{BBCB_MG_IMG_EXT}" name="url" onMouseOver="helpline('url')" alt="{L_BBCB_MG_URL}" title="{L_BBCB_MG_URL}" class="bbimages" /></a>
    #
    #-----[ BEFORE, ADD ]------------------------------------------
    #
                        <a href="javascript:BBCdownload()" accesskey="d"><img src="{BBCB_MG_IMG_PATH}download{BBCB_MG_IMG_EXT}" name="download" onMouseOver="helpline('download')" alt="{L_BBCB_MG_DOWNLOAD}" title="{L_BBCB_MG_DOWNLOAD}" class="bbimages" /></a>

  3. Re-Apply this to all styles and languages you have installed.


Greets!



This modificatios is apply to BBcode "Hide"

Thanks for the MOD it's very nice  


can you share it when you 're done.
 



 
xmenfileSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
The mod run in BBcode "hide" chek
 

downloadcx3

That i have a problem  

At time on clic in download

At this error:

 
Code: [Download] [Hide]
  1. http://www.kokforos.com/foro/javascriptBBCdownload() 

The window found  

 




____________
? JHOSMAN - Webmaster
 
JHOSMANSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
Great shoot Kas... thanks.

Can you create a new topic in Customizations forum with this modifcation please?
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
JHOSMAN wrote: [View Post]
That i have a problem  

At time on clic in download

At this error:

 
Code: [Download] [Hide]
  1. http://www.kokforos.com/foro/javascriptBBCdownload() 

The window found  
Sorry, I don't understand what are you trying to say

Mighty Gorgon wrote: [View Post]
Can you create a new topic in Customizations forum with this modifcation please?
Sure
 




____________
Gabriel Anca
 
KasLimonSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
KasLimon wrote: [View Post]
JHOSMAN wrote: [View Post]
That i have a problem  

At time on clic in download

At this error:

 
Code: [Download] [Hide]
  1. http://www.kokforos.com/foro/javascriptBBCdownload() 

The window found  
Sorry, I don't understand what are you trying to say


Check this =>

dibujohp3.th

Go to rhis page:

Code: [Download] [Hide]
  1. http://www.kokforos.com/foro/javascriptBBCdownload() 

 




____________
? JHOSMAN - Webmaster
 
JHOSMANSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: How Can Make One BBcode¿? 
 
Hi,

Use This topic please

JHOSMAN and xmenfile, not quote what has been said repeatedly please.

Topic Closed
 




____________
ThE KuKa - www.phpBB-Es.COM - Custom Installations phpBB
 
ThE KuKaSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events