Categories > TinyButStrong general >

Authentication and multilanguage solutions together with tbs

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: Martin
Date: 2005-04-26
Time: 14:55

Authentication and multilanguage solutions together with tbs

I know his maybe is not directly related to tbs itself. But I would like to now what solutions ohter people are using, togehter with tbs, for applications that need authentication (users, permissions, roles) and multilanguage. Is everybody using it's own work (would you like to share it) or third party (open source) libraries? Any info,advice or pointer is welcome.

Martin
By: r00t
Date: 2005-04-27
Time: 16:29

Re: Authentication and multilanguage solutions together with tbs

hi,

in my case what i did was...using PEAR::Auth and TBS

require_once 'tbs_class.php';
require_once '/usr/lib/php/Auth.php';

//start code for auth...


//end code for auth

//create instance of tbs
$tbs = new clsTinyButStrong;
$tbs->LoadTemplate('mytemplate.html');


//variables / blocks here


//output here
$tbs->Show();

that's it...btw, you can also try patUser class...