Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7537183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T06:46:51+00:00 2026-05-30T06:46:51+00:00

In CakePHP is it possible to set the options you pass to the Form

  • 0

In CakePHP is it possible to set the options you pass to the Form helper create method globally?

Since I want a specific form layout to be used on all my forms I am currently having to do this when I create every form.

<?php 
echo $this->Form->create('User', array(
    'class' => 'form-horizontal', 
    'inputDefaults' => array(
        'format' => array('before', 'label', 'between', 'input', 'error', 'after'), 
        'between' => '<div class="controls">', 
        'after' => '</div>', 
        'div' => 'control-group', 
        'error' => array(
            'attributes' => array('wrap' => 'span', 'class' => 'help-inline')
            )
        )
    ));
?> 

I was wondering if there was a way to specifiy this globally so I didn’t need do it with every create call.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T06:46:52+00:00Added an answer on May 30, 2026 at 6:46 am

    The answer of starlocke is ok but I would not even want to write these three lines all over the place. 🙂 Neither I think this is really “config data”. So here is what I would do:

    MyFormHelper extends FormHelper {
        public function create($model, $options) {
            $defaults = array(/* YOUR DEFAULT OPTIONS*/);
            $options = Set::merge($defaults, $options);
            //...
        }
    }
    

    Then simply call it:

    $this->MyForm->create(‘Profile’);

    or call it with a single option in the 2nd param you want to change somewhere.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to do domain-specific routes in cakephp? for example, let's say I
Is it possible to change the default behavior of form elements in CakePHP without
I have been able to use CakePHP's saveAll method to simultaneously create 'Members' and
Is it possible to have a nested ajax form in cakephp and firefox ?
Is it possible to use a behavior in Cakephp to set one of the
Is it possible in CakePHP to have URL aliases in routes.php? Or by what
I am using cakephp framework to build my application. I want that, whenever a
I am using Cakephp and I would like to learn how to set a
I want to limit my db data on CakePhp. It can be limited with
Using CakePHP 1.3, I have the following layout: /srv/www/_cakephp13/ /app/ /cake/ /plugins/ /vendors/ etc...

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.