Welcome Guest, Not a member yet? Register   Sign In
Code Igniter noob :)
#6

[eluser]Total Shop UK[/eluser]
[quote author="Mr. Gibon" date="1271878330"]Thanks for reply,

What solution would you choose for dynamic template?

I mean dynamic meta tags, content as $value form a array or database.
[/quote]

If you check out my code at SourceForge you can see the full code but the below snippets show you how it works..

application/views/home.php
Code:
<?php if (!isset($meta)) $meta=''; echo modules::run('_main/top',$meta); ?>

application/modules/controllers/_main.php
Code:
if ($meta!=''){
      $data['meta']['description']=$meta['description'];
      $data['meta']['keywords']=$meta['keywords'];
}else{
      $data['content'] = $this->content->get_content('home');
      $data['meta']['description']=$data['content']['description'];
      $data['meta']['keywords']=$data['content']['keywords'];
}
$this->load->view('_top.php', $data);

application/modules/views/_top.php
Code:
<meta name="description" content="<?php echo $meta['description']; ?>">
<meta name="keywords" content="<?php echo $meta['keywords']; ?>">


Messages In This Thread
Code Igniter noob :) - by El Forum - 04-21-2010, 07:39 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 07:47 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 07:51 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 08:32 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 08:35 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 08:48 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 08:52 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 08:58 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 10:42 AM
Code Igniter noob :) - by El Forum - 04-21-2010, 12:48 PM
Code Igniter noob :) - by El Forum - 04-21-2010, 01:11 PM
Code Igniter noob :) - by El Forum - 04-22-2010, 01:55 AM
Code Igniter noob :) - by El Forum - 04-22-2010, 02:00 AM
Code Igniter noob :) - by El Forum - 04-22-2010, 03:01 AM
Code Igniter noob :) - by El Forum - 04-22-2010, 03:20 AM
Code Igniter noob :) - by El Forum - 04-26-2010, 03:47 AM
Code Igniter noob :) - by El Forum - 04-26-2010, 03:58 AM
Code Igniter noob :) - by El Forum - 04-26-2010, 05:19 AM
Code Igniter noob :) - by El Forum - 04-26-2010, 06:09 AM
Code Igniter noob :) - by El Forum - 04-26-2010, 02:21 PM
Code Igniter noob :) - by El Forum - 04-28-2010, 03:58 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 04:36 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 05:08 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 05:43 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 08:54 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 10:44 AM
Code Igniter noob :) - by El Forum - 04-28-2010, 04:28 PM
Code Igniter noob :) - by El Forum - 04-29-2010, 01:39 AM



Theme © iAndrew 2016 - Forum software by © MyBB