Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to bake models, controllers and views for my plugin in my app called: admin. I am using windows 7. Bake works when baking an app and within the app.

This is what I am doing:

  1. cd c:\wamp\www\propharm\app (also tried without \app)
  2. cake bake plugin admin model

This is the folder my plugin resides in: C:\wamp\www\propharm\app\Plugin

I get this in response from the console.

Create the directory structure, AppModel and AppController classes for a
new plugin. Can create plugins in any of your bootstrapped plugin paths.

Usage:
cake bake plugin [-h] [-v] [-q] [<name>]

Options:

--help, -h     Display this help.
--verbose, -v  Enable verbose output.
--quiet, -q    Enable quiet output.

Arguments:

name  CamelCased name of the plugin to create.
      (optional)

I tried this: in bootrap.php

CakePlugin::load('Admin');

Its still not working. If someone knows what I am doing wrong, please help. thanks. Louis

share|improve this question

1 Answer

up vote 3 down vote accepted

1) Bake your plugin:

cake bake plugin PluginNameInCamelCase

2) Bake everything else:

cake bake controller ControllerName --plugin PluginNameInCamelCase

See this page for further documentation in baking plugins: Creating Your Own Plugins with CakePHP

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.