CakePHP 1.2から1.3移行で躓いた箇所

  • HtmlHelperのリンクの生成

1.2 $html->link($title,$url,$htmlAttributes,$confirmMessage,$escapeTitle)
1.3 $html->link($title,$url,$options,$confirmMessage)

$title : リンクタイトル
$htmlAttributes : HTML属性
$options : HTML属性とオプション値
$confirmMessage : 確認メッセージ
$escapeTitle : $titleをエスケープするかの真偽値

タイトルとして画像タグ等のHTML文字列を使う場合は$optionsのescapeをfalseに設定する
例:

$html->link($html->image('画像のパス',array('width'=>'','height'=>'','border'=>'')),'URL',array('escape'=>false),null)
  • クッキーの削除

1.2 $this->Cookie->del(),$this->Cookie->delete()
1.3 $this->Cookie->delete()

1.3では$this->Cookie->del()は廃止された