Show
Ignore:
Timestamp:
01/18/06 18:45:19 (6 years ago)
Author:
john
Message:

Made all the file php long tags (uglysvn up)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/templates/scaffolds/generator_templates/view_show.phtml

    r113 r117  
    1 < ? if(count($<?=$singluar_model_name?>->content_columns)): ? > 
    2     < ? foreach($<?=$singluar_model_name?>->content_columns as $column): ? > 
     1< ?php if(count($<?php echo $singluar_model_name ?>->content_columns)): ? > 
     2    < ?php foreach($<?php echo $singluar_model_name ?>->content_columns as $column): ? > 
    33        <p> 
    4             <b>< ?= $column['human_name'] ? >:</b> 
    5             < ?= $<?=$singluar_model_name?>->send($column['name']) ? > 
     4            <b>< ?php echo $column['human_name'] ? >:</b> 
     5            < ?php echo $<?php echo $singluar_model_name ?>->send($column['name']) ? > 
    66        </p> 
    7     < ? endforeach; ? > 
    8 < ? else: ? > 
     7    < ?php endforeach; ? > 
     8< ?php else: ? > 
    99    no table info found. 
    10 < ? endif; ? > 
     10< ?php endif; ? > 
    1111 
    1212<br> 
    1313 
    14 < ?= link_to("Edit", array(":action" => "edit", ":id" => $<?= $singluar_model_name ?>)) ? > | 
    15 < ?= link_to("Back", array(":action" => "index")) ? > 
     14< ?php echo link_to("Edit", array(":action" => "edit", ":id" => $<?php echo $singluar_model_name ?>)) ? > | 
     15< ?php echo link_to("Back", array(":action" => "index")) ? >