Can you please let me know where do I get YII Framework plugin for Netbeans? I tried to search but I couldn't find.
Thank you very much!
The question is why do you need a plugin?
Just include Yii framework path in your project include path and all your functions will be part of autocomplete.
I use Yii with netbeans all the time and never felt the need for one. However there is another IDE, codelobster, who recently launched a plugin for yii, you might check it out but it is not as good as netbeans for advanced users, however good enough for basic usage so you might be interested.
Also for PDT there is plugin adding yii framework support. At the moment functionality is limited to creating new yii-powered project and some useful navigation (controller/action -> view, view -> view (partial render), widget->widgetClass, and some others.
More information you can find at yiiclipse home page.
There isn't one currently. That's why you couldn't find it.
actually it is available here is the link
http://www.yiiframework.com/news/69/yii-plugin-for-netbeans/
Related
I have been working on Magento for the last few months. I want to develop modules in Magento but my question is how can I start to develop for it?
1) What are some of the basic needs to create a module?
2) What type of xml files settings need to develop module and why?
If someone could also provide a diagram of the overall architecture of a Magento module, that would be great.
You can find here a nice tutorial: http://www.smashingmagazine.com/2012/03/01/basics-creating-magento-module/.
This one is nice also: http://code.tutsplus.com/tutorials/magento-custom-module-development--cms-20643.
There are a lot of resources like this online. If only there was a tool to search for them...
If you are a beginner, you can use a module creator.
You will use it even if you are an advanced magnento developer because you don't want to do the same thing over and over again.
I can recommend you this one: https://github.com/tzyganu/UMC1.9. It's pretty advanced and does a lot of stuff, not just a simple module.
Or this one. http://www.silksoftware.com/magento-module-creator/. This has the advantage of being on online and you don't have to install anything to use it.
I need to create a php page to load Joomla template and assign data to its component. I do it for learning purposes and may be it will be useful in future. I tried to read on internet but there are almost no (as per my findings) tutorial that explains that. I would e happy to get direction and even joomla file(s) that do loading so that I can learn from there.
Thanks!
I found a basic tutorial that gave me a light on how things work here
I tried all the day to set up a Zend Framework project in Dreamweaver CS5.5. Now, after a few hours spending on google and the CS5.5 doc, i am still not able to debug a Zend Framework project in Dreamweaver:
Let's say, i have a module called "admin" in /application/modules/admin. If i try the Live View feature, Live Code, or the dynamic files discover, it fails at all.
If I try to debug the IndexController of the AdminModule, Dreamweaver always tries to render the page http://foo.bar/application/modules/admin/controllers/IndexController.php, insteadof http://foo.bar/admin[/index/index]
Is there any way to get those features working with Dreamweaver CS5.5?
Also, the include path does not work. The /public/index.php includes something like require_once 'Zend/Application.php';. Where does Dreamweaver search? He tells me that he can not find the file http://foo.bar/Zend/Application.php. Omg, srsly?
I hope there are some Dreamweaver PHP developers out there which can help me.
Btw, I am using Zend Studio at the moment and wanted to get a "quick" look into the new CS5.5 features :/
Update 16.05.2012
Little update from me. I'm currently Using PHPStorm from JetBrains. It is the best IDE I ever had. (Ecpilse/Aptana/Zend Studio/PHPDesigner). Autocomplete for nearly everything, huge plugin repository and much nice features like LESS Support, NodeJS Support, PHPUnit integration or an integrated Git Client. Give it a try. It's free for open source projects.
Dreamweaver can technically work with anything, but it's really designed to work with procedural php.
I would recommend the eclipse software with the pdt plugin or net beans. WAY better for supporting a zend framework project imo.
I'm not bagging on dreamweaver, it's a nice tool (especially for html/css), but for OO PHP programming, it's really not designed for it.
The Zend API documentation does not show inherited methods and properties. I'm using Netbeans, which does not show them either.
What's the best way for me to get this info (without trawling through the relevant files each time I use them)? The only option I can think of is to regenerate Zend's API documentation with PHPDocumentor, or something similar...
Thanks for you ideas!
Type Hierarchy View is there for Netbeans after 6.9.1
See the blog post http://blogs.oracle.com/netbeansphp/entry/type_hierarchy
May be this also helps http://wiki.netbeans.org/Java_MembersAndHierarchyPopup
This is actually planned to be added to DocBlox (and thus the Zend Framework API docs); you can view details of this at https://github.com/mvriel/Docblox/issues/74
I am trying to push this for the next version but it might be the one after that.
I am using PhpStorm IDE. It has some good features, that NetBeans has not. For your question you can use "Type hierarchy" tool. Sorry for my english.
I have just entered in the world of OpenX, and as figured out that new version is built with PLUGIN Framework. I have gone through the Openx plugin development documentation, but its quite bit complicated and half explained.
Being a php developer, I would like to jump into plugin development for openx.
If anyone can point me to a starting, with good reference and tutorial?
Thanks,
Tanmay
I didn't got much reference but here is the link which can help you create plugins
https://svn.openx.org/openx/trunk/plugins_repo/release/openXDeveloperToolbox.zip
With this you can create a framework of plugin. This will be a great help to understand the file structure.
Hope some one will be helped
by using openX Developer Toolbox we we can create new mock plugins, basically it will create a new mock plugin files and you have to change those files as per requirement and you can install that plugin. It is not fully good solution for building a plugin but yes it will help you build a plugin.
Here is another resource for plugins (includes a link to the Toolbox above as well as a demo plugin):
http://blog.openx.org/05/plugin-framework-exposed/
Take care when using the plugin-skeleton generator. It will generate the function name of the delivery method with a wrong name. So at the end it will NOT be called at all.
Adding "_adRender" (as a postfix) to the function-name should fix this.