Skip to content

Instantly share code, notes, and snippets.

@monsat
Created February 28, 2012 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monsat/1930446 to your computer and use it in GitHub Desktop.
Save monsat/1930446 to your computer and use it in GitHub Desktop.
h1 ViewBlock in layout file
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php echo $this->Html->charset(); ?>
<title><?php echo $title_for_layout; ?></title>
</head>
<body>
<div id="container">
<div id="header">
<h1><?php echo $this->fetch('titleInHeader'); ?></h1>
</div>
<div id="content">
<?php echo $this->Session->flash(); ?>
<?php echo $this->fetch('content'); ?>
</div>
<div id="footer"><?php echo $this->Html->link($this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')), 'http://www.cakephp.org/', array('target' => '_blank', 'escape' => false)); ?></div>
</div>
</body>
</html>
<p>
ユーザーの一覧を表示します。<br />
編集する場合はユーザー名をクリックしてください。<br />
</p>
<?php
foreach ($users as $user) {
echo $this->Html->link($user['User']['name'], array('action' => 'view', $user['User']['id']));
echo '<br />';
}
?>
<p>
全<?php echo count($users); ?>件。<br />
編集する場合はユーザー名をクリックしてください。<br />
</p>
<?php
// h1を設定する
$this->assign('titleInHeader', 'ユーザー一覧(' . count($users) . '人)');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment