コード例 #1
0
ファイル: index.php プロジェクト: ergov2015/Richard_joseph
function meta_custom()
{
    // notice the groups arg sets the data in the
    // DB as one item serialized as an array
    acpt_form('details')->checkbox('checkbox', array('label' => 'Checkbox Example', 'desc' => 'Select this for value of 1'))->text('text', array('label' => 'Text Field', 'class' => 'example-class', 'help' => 'Example help text'))->color('1', array('group' => '[details_colors]', 'label' => 'Color Field', 'default' => '#000', 'palette' => array('#fff', '#f00', '#f30')))->color('2', array('group' => '[details_colors]', 'label' => 'Color Field (no palette)'))->image('image', array('label' => 'Image Field', 'button' => 'Add Your Image', 'sub' => '[details_files]'))->file('file', array('label' => 'File Field', 'button' => 'Select a File', 'sub' => '[details_files]'))->google_map('address', array('label' => 'Address Field'))->date('date', array('label' => 'Date Field', 'button' => 'Enter a Date', 'group' => '[details_adv]'))->textarea('textarea', array('label' => 'Textarea', 'group' => '[details_adv]'))->select('select', array('one', 'two', 'three'), array('label' => 'Select List', 'group' => '[details_adv]'))->select('select_key', array('One' => '1', 'Two' => '2', 'Three' => '3'), array('label' => 'Select List Key', 'select_key' => true, 'group' => '[details_adv]'))->radio('radio', array('blue', 'green', 'red'), array('label' => 'Radio Buttons', 'group' => '[details_adv]'))->editor('editor', 'WYSIWYG Editor', array('group' => '[details_adv]'))->editor('editor_teeny', 'Teeny Editor', array(), array('teeny' => true, 'media_buttons' => false));
}
コード例 #2
0
ファイル: seo.php プロジェクト: ergov2015/Richard_joseph
function meta_acpt_seo()
{
    acpt_form('acpt_seo', array('group' => '[seo][meta]'))->text('title', array('label' => 'Title'))->textarea('description', array('label' => 'Description'));
}