Show
Ignore:
Timestamp:
07/11/08 23:55:21 (4 months ago)
Author:
aarkerio
Message:

Banners ans faqs

Location:
trunk/app/views/elements
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/elements/acquaintances.ctp

    r634 r651  
    33 
    44foreach ($blog["Acquaintance"] as $val): 
    5   echo $html->link('>'. $val['name'], $val['url'], aa('class', 'petit')).'<br />'; 
     5  echo '► '.$html->link($val['name'], $val['url'], aa('class', 'petit')).'<br />'; 
    66endforeach; 
    77 
  • trunk/app/views/elements/catfaqs.ctp

    r495 r651  
    44 
    55foreach ($blog["Catfaq"] as $val): 
    6   e($html->link('> '. $val['title'], '/catfaqs/view/'.$val['id'].'/'. $val['user_id'], array('class'=>'petit')) . '<br />'); 
     6  e('► '.$html->link($val['title'], '/catfaqs/view/'.$val['id'].'/'. $val['user_id'], array('class'=>'petit')) . '<br />'); 
    77endforeach; 
    88 
  • trunk/app/views/elements/faqs.ctp

    r313 r651  
    1 <?php 
    2  
    3 echo "Chipotle Software &copy; 2002-2006 GPL"; 
    4  
    5 ?> 
     1<?php echo "Chipotle Software &copy; 2002-2008 GPL";?> 
  • trunk/app/views/elements/lesson.ctp

    r629 r651  
    44 
    55foreach ($blog["Lesson"] as $val): 
    6       echo $html->link($val['title'], '/lessons/view/'.$blog['User']['username'].'/'.$val['id'], array('class'=>'petit')) . '<br />'; 
     6    echo '► '.$html->link($val['title'],'/lessons/view/'.$blog['User']['username'].'/'.$val['id'], aa('class','petit')) . '<br />'; 
    77endforeach; 
    88 
    9 echo $html->para(null, $html->link('View all Lessons', '/lessons/display/'.$blog['User']['username'], array("class"=>"petit"))); 
     9echo $html->para(null, $html->link(__('View all Lessons', true), '/lessons/display/'.$blog['User']['username'], array("class"=>"petit"))); 
    1010 
    1111?> 
  • trunk/app/views/elements/podcast.ctp

    r629 r651  
    33 
    44foreach ($blog["Podcast"] as $val): 
    5   echo $html->link('>&gt;'. $val['title'], '/podcasts/show/'.$val['user_id'].'/'.$val['id'], array('class'=>'petit')) . '<br />'; 
     5  echo '► '.$html->link($val['title'],'/podcasts/show/'.$val['user_id'].'/'.$val['id'], aa('class','petit')).'<br />'; 
    66endforeach; 
    77 
    8 echo $html->para(null, $html->link(__('View all podcast', true), '/podcasts/display/'.$val['user_id'], aa('class', 'petit'))'; 
     8echo $html->para(null, $html->link(__('View all podcast', true), '/podcasts/display/'.$val['user_id'], aa('class', 'petit')))'; 
    99 
    1010?> 
  • trunk/app/views/elements/vclassrooms.ctp

    r635 r651  
    33 
    44foreach ($blog['Vclassroom'] as $val): 
    5    echo $html->link($val['name'], '/vclassrooms/show/'.$val['user_id'].'/'. $val['id'], array("class"=>"petit")) . "<br />\n"; 
     5  echo '► '.$html->link($val['name'], '/vclassrooms/show/'.$val['user_id'].'/'. $val['id'], array('class','petit')) . "<br />"; 
    66endforeach; 
    77?>