Our time to review information is shrinking while the available information to review is growing, which leads us to the need for methods that help us understand information faster. Data visualization will play a key role in helping us convey and interact with information in more interesting ways. Adobe Flash Builder is a tool that will help.
Adobe has released a beta version of Adobe Flash Builder, the next generation of the popular Flex Builder tool. Zend Framework is now included within Flash Builder, allowing developers to introspect PHP classes and then to use a drag and drop approach to bind specific methods to UI components in applications, such as interactive charts, graphs, datagrids, and more. These new features provide a simplified development approach for adding rich UI to PHP applications using the Flex Framework and Zend Framework. Download Flash Builder 4 Beta 1 today from http://labs.adobe.com/?sdid=ERZSR.
I’m excited to see the Zend Framework is included in the new Adobe Flash Builder. I have been closely following this project. I believe the Zend Framework plays a key role in Enterprise Level application development. This framework is
Well Documented
Simple
Safe for the Enterprise
Supported by Industry
Supported by Development Community
Supports Rapid Development
Flexible Architecture
Extensible
Tested Code Base
Professional Training Available
Certification Possible
Some people may argue that PHP Zend Framework is just an abstraction layer of unwanted, bloated code. I disagree. I believe the Zend Framework, with it’s Object Oriented approach is the foundation of Enterprise 2.0 level code. I recommend at least taking a look http://framework.zend.com .
Happy Friday! I have been helping people with web-based solutions for years. Some of my projects have included simple brochure type of web sites, others have been dynamic, database driven web sites with a huge number of people rapidly accessing components while expecting instant responses from the application. Most of this code has been written in PHP with tools like Adobe Dreamweaver. A while back I posted an article about installing the Zend Framework and a quick article about “New Zend Demo – Developing Rich Internet Applications (RIAs)“. Zend has an endless amount of tools, training, education, & resources to help you with your social media platform development, which should be part of your Enterprise 2.0 strategy.
Using Zend Studio to develop your Social Media Platform for your Enterprise 2.0 Solution
When developing PHP Solutions for Social Media Platforms, I prefer a robust toolset to help create exciting user interfaces, especially in the Enterprise.
I found these videos very helpful and I just wanted to share them with you to hopefully help you in your quest for developing rich internet applications for your social media platforms.
Creating Rich Internet Applications (RIAs) has never been easier! The integration of Zend Framework and Dojo, and the new Dojo code editing support in Zend Studio for Eclipse 6.1, provide an out-of-the-box solution for rapid development of Ajax-based applications. View our new, five minute screencast to understand the basic steps of creating a meeting scheduler PHP Web application:
Creating a Zend Framework and Dojo project
Using Zend Studio’s code assist for writing Dojo code
Deploying and running the application
If you can not see the embedded video, you can access the zend demo video here.
Extending the art & spirit of PHP, Zend Framework is based on simplicity, object-oriented best practices, corporate friendly licensing, and a rigorously tested agile codebase. Zend Framework is focused on building more secure, reliable, and modern Web 2.0 applications & web services, and consuming widely available APIs from leading vendors like Google, Amazon, Yahoo!, Flickr, as well as API providers and cataloguers like StrikeIron and ProgrammableWeb. http://framework.zend.com/about/overview
Installing Zend Framework from the command line
Connect to your server with a command line tool like PuTTY
PuTTY is a free implementation of Telnet and SSH for Win32 and Unix platforms, along with an xterm terminal emulator. It is written and maintained primarily by Simon Tatham.
Here are the command line steps
These steps are executed by super user (su) in your site’s root directory
Decompress the file. tar -xzvf ZendFramework-1.7.0.tar.gz
Delete the compressed file. rm ZendFramework-1.7.0.tar.gz
Move the library files to your standard location. Note: This is usually something like “/usr/local/lib/php”, but you may need to check your PHP Include Path to validate your standard location. mv ZendFramework-1.7.0/library/Zend /usr/local/lib/php
Delete the decompressed directory and all it’s contents. rm -rf ZendFramework-1.7.0
Setup Zend Framework Directories
Move just outside of site root directory to create your Applications directory.
mkdir applications
mkdir applications/data
mkdir applications/data/logs
mkdir applications/data/tmp
mkdir applications/data/tmp/templates_c
mkdir applications/controllers
mkdir applications/views
mkdir applications/templates
The Zend Framework site offers offers Zend Framework installation steps that are a little different than the steps explained here.