Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Questions and Supports

Notices

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 06-17-2014, 04:10 PM
IntoRain's Avatar
IntoRain IntoRain is offline
Moderator
 
Join Date: Jul 2013
Location: Portugal
Posts: 461
Gender: Female
Credits: 22,933
IntoRain is on a distinguished road
Default

I'm currently enjoying the joys of Smarty, after having to use it for a class this semester. I will see if I can explain this well! :D

Basically Smarty is a way to code a template without putting PHP and HTML together. You basically need to assign a PHP variable into a Smarty variable, to be able to use it in a .tpl

I usually set my variables in class_template.php's assignTemplateVars() function with

PHP Code:
$this->assign("nameToUseInTemplate",$nameOfVariable); 
and in class_frame.php with

PHP Code:
$mysidia->template->assign("temp",$var); 
So, in those files, as long as you have this:

PHP Code:
$mysidia Registry::get("mysidia"); 
You can use anything from mysidia.

--------------

To assign the loggedin variable to a Smarty variable called logged_in in class_template.php:

PHP Code:
$mysidia Registry::get("mysidia");
$this->assign("logged_in",$mysidia->user->isloggedin); 
You can now use {$logged_in} in your template.tpl file.

More examples (in class_template.php):

PHP Code:
$mysidia Registry::get("mysidia");
$this->assign("logged_in",$mysidia->user->isloggedin);

//get user's cash
$this->assign("user_cash",$mysidia->user->getcash());

//get user's username
$this->assign("username",$mysidia->user->username);

//get user's group
$this->assign("group",$mysidia->user->getusergroup());

//get user's new unread messages (3 max)
$messages $mysidia->db->select("messages", array(), "touser='{$mysidia->user->username}' and status='unread' ORDER BY id DESC LIMIT 3")->fetchAll();
$this->assign("messages",$messages);

//using messages in template.tpl (example):
{foreach from=$messages item=message}
<
a href="/messages/read/{$message.id}">
      
From:{$message.fromuser}
      
Title:{$message.messagetitle}
      
Date:{$message.datesent}
</
a>
{/foreach} 
__________________


asp.net stole my soul.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Smarty Tips: Things you can do with Templates Kyttias Tutorials and Tips 5 04-03-2015 10:53 AM
Assigning array to smarty variables IntoRain Questions and Supports 3 06-03-2014 02:06 PM
Smarty errors and WAMPP Kesstryl Questions and Supports 15 01-29-2014 09:07 PM
Problem: smarty class 1.3.4 draugluin Questions and Supports 8 11-15-2013 02:29 AM


All times are GMT -5. The time now is 05:00 AM.

Currently Active Users: 3917 (0 members and 3917 guests)
Threads: 4,081, Posts: 32,032, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636