1

(151 replies, posted in PunBB 1.3 extensions)

Thanks kierownik smile

2

(151 replies, posted in PunBB 1.3 extensions)

And a hook before "@natcasesort($url_schemes);" in admin/options.php to add new method of URL Rewriting Scheme ?
For example :

$url_schemes[] = 'Method.php';

Maybe aop_add_url_scheme ?

3

(151 replies, posted in PunBB 1.3 extensions)

I need a hook at the top of generate_navlinks function to add links before default links.

4

(151 replies, posted in PunBB 1.3 extensions)

It works big_smile Thank you very much Smartys smile

5

(151 replies, posted in PunBB 1.3 extensions)

When I install an extension with URL rewriting sheme is File_Based, $pun_url['index'] = index.php instead of index.html hmm

6

(151 replies, posted in PunBB 1.3 extensions)

I know, I want to modify pun_rewrite_rules too smile
I have a problem with an extension, when the URL rewriting sheme is File_Based, I can't modify $pun_url['index'] var. Here is my code :

        <hook id="co_common"><![CDATA[
            if ($pun_config['o_sef'] == 'Default')
                $pun_url['index'] = 'index.php';
            elseif ($pun_config['o_sef'] == 'File_Based' || $pun_config['o_sef'] == 'File_based_(fancy)')
                $pun_url['index'] = 'index.html';
            elseif ($pun_config['o_sef'] == 'Folder_Based' || $pun_config['o_sef'] == 'Folder_Based_(fancy)')
                $pun_url['index'] = 'index/';
            else
                $pun_url['index'] = 'index.php';
        ]]></hook>

I hope you understand my question, I'm not very good at english hmm

7

(151 replies, posted in PunBB 1.3 extensions)

Sorry, the hook I was searching is in rewrite.php ^^

8

(151 replies, posted in PunBB 1.3 extensions)

Hook after URL rewriting scheme (include/common.php) to modify $pun_url var.

Thanks Smartys smile

10

(7 replies, posted in PunBB 1.3 troubleshooting)

I want to add an other table in INNER JOIN. How can I do that ?