简体   繁体   中英

How to bake a plugin controller without scaffolding in cakephp 2.3

When I bake my plugin controller, it always generate with scaffolding.

class MyController extends PluginAppController {

/**
 * Scaffold
 *
 * @var mixed
 */
        public $scaffold;

}

Anyone help me to bake plugin without scaffolding.

From your main app directory in the command line enter

  1. cake bake controller -p <pluginname>
  2. select the controller you're baking
  3. Answer the scaffolding question with default (no)

    Would you like to use dynamic scaffolding? (y/n)
    [n] >

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM