Skip to content

Instantly share code, notes, and snippets.

@usual-tools
Last active August 29, 2015 13:56
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 usual-tools/9038171 to your computer and use it in GitHub Desktop.
Save usual-tools/9038171 to your computer and use it in GitHub Desktop.
<!-- シンプル版 -->
<?php
$options = array(
'nonuse' => '使用しない'
, 'use' => '使用する'
);
echo $this->Form->input("sample-input-name", array('type' => 'radio', 'before' => 'サービスShop', 'options' => $options));
?>
<!-- DTDL版 -->
<dt>サンプル項目</dt>
<dd>
<?php
$options = array(
'nonuse' => '使用しない'
, 'use' => '使用する(通常)'
, 'simple' => 'シンプル版'
);
echo $this->Form->input("sample-input-name", array('type' => 'radio', 'label' => true, 'options' => $options));
?>
</dd>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment