WebsiteBaker Community Forum

General Community => Global WebsiteBaker 2.8.x discussion => Topic started by: Uthred on April 01, 2009, 07:10:16 AM

Title: add constant -> PAGE_LINK
Post by: Uthred on April 01, 2009, 07:10:16 AM
Hi,

it would be great if someone can add the define for a PAGE_LINK constant in class.frontend.php for future WB versions.
Code: [Select]
define('PAGE_LINK', $this->page['link']);
thanks
Title: Re: add constant -> PAGE_LINK
Post by: Stefek on November 29, 2009, 11:24:35 PM
This is a good idea.

Could anybody tell me, how to get the URL of the current page easily?

I am using SM2/CRUMB in order to get it, but I think there should be a more easy way to get it?

Any hints welcome.

Regards,
Stefek

Code: (SM2/CRUMB) [Select]
<?php
//create VARiable for current page url
    
ob_start();
    
show_menu2(0,SM2_CURR,SM2_CURRSM2_CRUMB, &#39;[url]&#39;, &#39;&#39;, &#39;&#39;, &#39;&#39;, &#39;&#39;, false, false) ;       
    
$PAGE_LINK ob_get_contents();          
    
ob_end_clean();  
Title: Re: add constant -> PAGE_LINK
Post by: DarkViper on November 30, 2009, 01:21:36 AM
Code: [Select]
$current_page_link = WB_URL . $GLOBALS['wb']->page['link'] . PAGE_EXTENSION;
that's all....

( wb->page  is an array witch holds the complete record of the current page from table `xxx_pages` )
Title: Re: add constant -> PAGE_LINK
Post by: BerndJM on November 30, 2009, 03:25:50 AM
Ok,

here I see it again:
there are a lot of functions/globals/arrays that are not (good) documented.

Anybody out there, that would do a documentation for this part which belongs to the "Dvelopers Guide" of the Help-Project ?!?!?

Regards Bernd
Title: Re: add constant -> PAGE_LINK
Post by: Stefek on November 30, 2009, 04:36:45 AM
Thanks to DarkViper I defined a Constant in the index.php of my template like this:



define("PAGE_LINK", WB_URL . PAGES_DIRECTORY . $GLOBALS['wb']->page['link'] . PAGE_EXTENSION);



... and works.

Regards,
Stefek
Title: Re: add constant -> PAGE_LINK
Post by: DarkViper on November 30, 2009, 12:47:17 PM
Unfortunately the core of WB2.8.x should be backward compatible to PHP4.x.x.
So it's not possible to make classes and objects save for public use yet.
From the moment when we stop suporting PHP4.x.x., we can start to create save, well documented interfaces. But it needs time..time..time

Werner