SlideShare uma empresa Scribd logo
1 de 40
Baixar para ler offline
Yii Framework
            CHRISTOPHER JOHN CUBOS
WEB DESIGN AND DEVELOPMENT MONTH (AUGUST 2011)
 COLLEGES & UNIVERSITIES DAVAO CITY PHILIPPINES




           Yii PHP MVC Framework Aug 2011
                  www.silicongulf.com
Your First Animation
Clicking your way through Adobe Edge
Who is Chris Cubos
  • Started programming at age 10 (1985)
  • Created his first website (1995)
  • The first web designer/developer in Mindanao
  • Been doing this for 26 years and still learning
  • Won the first web design competition in the Philippines
    (1995) held in Cebu City
  • Developed his first CD-ROM application (1996)
  • Developed his first flash site (1995)

  … forward to the present


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Tech Stuff
  • Languages: Q/BASIC/A, Pascal, C, C++,
    Assembly, PHP, JavaScript, VBScript, ASP,
    AutoLISP, Lingo, ActionScripting, etc…
  • PHP Frameworks: CodeIgniter, FuelPHP
  • CMS: Wordpress, Drupal, Joomla, Mambo, etc
  • Applications: Photoshop, Dreamweaver,
    Illustrator, AfterEffects, Premiere, CS, etc…



Yii PHP MVC Framework Aug 2011
www.silicongulf.com
1st    Web Development Company
  • Won the Philippine Webby Awards for
    Multimedia Category
  • Won Davao Web Design Competition in multiple
    categories and the overall best web design
  • 1st Company to develop flash based applications
  • 1st Company to develop multimedia CD-ROMs
  • 1st Company to develop web portals
  • 2nd Company to develop a PH search engine
  • Won multiple awards in web design, logo design

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Yes the present
  • He currently devotes his time helping students
    enhance their skills with the non-profit
    organization called the SiliconGulf Initiative
  • He is also organizing large I.T. events in the
    Davao and currently organized the most number
    of I.T. events in a single month.
  • Furthermore, he is currently developing the the
    first game-based training center in Mindanao


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Brewing
  • We are currently developing the first game-based
    training center in Mindanao
  • Multiple mobile apps and games
  • Organizing multiple upcoming I.T. events




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
What is Yii Framework?
  • Yii is a high-performance PHP framework best
    for developing Web 2.0 applications.
  • Yii helps Web developers build complex
    applications and deliver them on-time.
  • Yii is pronounced as Yee or [ji:], and is an
    acroynym for "Yes It Is!". This is often the
    accurate, and most concise response to inquires
    from those new to Yii
  • Yii is the brainchild of Qiang Xue, who started
    the project on January 1, 2008

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
More about Yii
  • Yii is a free, open-source Web application development
    framework written in PHP5 that promotes clean, DRY
    design and encourages rapid development.
  • It works to streamline your application development and
    helps to ensure an extremely efficient, extensible, and
    maintainable end product.
  • Being extremely performance optimized, Yii is a perfect
    choice for any sized project.
  • It has been built with sophisticated, enterprise
    applications in mind.
  • You have full control over the configuration.

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Basic Facts
  • 1 Year in the making
  • Model-View-Controller (MVC) design pattern
  • Based on Prado, RoR, Symfony, Joomla
  • AJAX-enabled widgets
  • Database Access Objects (DAO), Query Builder,
    Active Record, DB Migration
  • Form input and validation
  • Skinning and theming
  • Authentication and authorization

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Quick Facts
  • Web services
  • Internationalization (I18N) and localization
    (L10N)
  • Layered caching scheme
  • Error handling and logging
  • Security
  • Unit and functionality testing
  • Automatic code generation


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Fast Facts
  •   Compliance to XHTML
  •   Purely object-oriented
  •   Friendly with third-party code
  •   Detailed documentation
  •   Extension library




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Why choose Yii
  • Generate applications fast with base examples
    (blog, hangman, hello world, phone book)




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Getting Started: Download
  www.Yiiframework.com

  • Framework
  • Documentation
  • Demos
     – Blog
     – Hangman
     – Hello World
     – Phone Book

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Requirements
  •   PHP Version – 5.1
  •   $_SERVER variable
  •   Reflection extension
  •   PCRE extension
  •   APC extension

  Check if your setup meet the requirements
  • /localhost/requirements/index.php


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Installing: Windows
  •   Install Server
  •   Download Yii
  •   Install
  •   Requirements
  •   Code




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Recommended Tools
  •   Adobe Dreamweaver
  •   CodeLobster
  •   E-texteditor
  •   Komodo
  •   Eclipse
  •   Google Chrome
  •   WAMP
  •   Notepad++
  •   Navicat

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Let’s Code .. Not!!!
  Excited, hehe




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Yiic and Gii
  • Yiic (command line tool) - create an application
  • Gii (powerful web based code generator) -
    automate code creation for certain tasks




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Yiic.php
  php framework/yiic.php webapp myfirst

  • This will create a skeleton Yii application under
    the directory _root/myfirst.
  • The application has a directory structure that is
    needed by most Yii applications.




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Command Line




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Results




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
The Generated Code
  http://localhost/myfirst




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Configuring Gii
  localhostmyfirstprotectedconfigmain.php

  'modules'=>array(
       // uncomment the following to enable the Gii tool

          'gii'=>array(
                 'class'=>'system.gii.GiiModule',
                 'password'=>'password',
                 'ipFilters'=>array('127.0.0.1','::1'),
          ),

     ),

  http://localhost/myfirst/index.php?r=gii

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Gii the GUI Generator
  • Create
     – Controllers
     – CRUD
     – Forms
     – Models
     – Modules




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
What’s next
  •   Research
  •   Compare
  •   Develop Applications
  •   Test
  •   And do it all over again.




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Thanks
  Oops… There’s more




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Full year of IT Events
  August 2011: Web Development Month
  September 2011: Mobile Application Month
  October 2011: Animation Month
  November 2011: Bloggers Month
  December 2011: SEO Month
  January 2012: Technopreneurship Month
  February 2012: I.T. Education Month
  March 2012: I.T. Career Month
  April 2012: Gaming Month
  May 2012: Graphic Design Month
  June 2012: Hacking and Network Security Month
  July 2012: Software Development Month

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
August I.T. Events by PGO
  University of Southeastern Philippines (USEP)
  Friday, August 12 · 9:00am - 11:30am
  http://www.facebook.com/event.php?eid=229646943743096

  John Paul II College (JP2C)
  Saturday, August 13 · 9:00am - 4:00pm
  http://www.facebook.com/event.php?eid=220035684709122

  University of Mindanao (UM)
  Wednesday, August 17 · 1:00pm - 5:00pm
  http://www.facebook.com/event.php?eid=245697658786703

  University of Immaculate Conception (UIC)
  Saturday, August 20 · 1:00pm - 5:00pm
  http://www.facebook.com/event.php?eid=231713253532167

  ACLC
  Monday, August 22 · 1:00pm - 4:00pm
  http://www.facebook.com/event.php?eid=231458190229578


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
August I.T. Events by PGO
  Holy Cross (HCDC)
  Tuesday, August 23 · 3:00pm - 6:00pm
  http://www.facebook.com/event.php?eid=253809011309471

  InterCity College of Science and Technology (ICST)
  Wednesday, August 24 · 9:00pm - 11:00pm
  http://www.facebook.com/event.php?eid=225237414194879

  AMA Computer College
  Thursday, August 25 · 9:30am - 1:00pm
  http://www.facebook.com/event.php?eid=138109472943706

  STI College
  Friday, August 26 · 1:00am - 4:00pm
  http://www.facebook.com/event.php?eid=124462760983852


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Competition
  On-the-spot Student Web Design Competition
  August 27, 2011
  http://www.facebook.com/event.php?eid=241281559236739

  Entries can be found at
  http://www.silicongulf.com/competitions/web_design




Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Our Loving Supporters
  •   The SiliconGulf Initiative
  •   Davao IT
  •   Adobe User Group
  •   PHP Philippines
  •   Developers, Entrepreneurs, Artists of Davao
  •   SEO-Philippines
  •   The IT School with no name yet
  •   Philippine Global Outsourcing


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Thanks
  To all speakers, PHP framework developers, our
   team at Philippine Global Outsourcing, students
   of all participating schools

  To the Yii Framework Development Team for this
   wonderful piece of software.

  Learn from the best www.silicongulf.com


Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Contact
  2nd Floor Door #8 Andreliz Bldg
  #238 Araullo Extension
  8000 Davao City Philippines
  philippineoutsourcing@gmail.com
  www.philippineglobaloutsourcing.com

  +63 916 477 9322 (globe)
  +63 907 775 6544 (smart)
  +63 922 551 4009 (sun)
  +63 923 725 4512 (sun)
  +63 82 224 1040 (landline)

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Copyright
     This reference material is exclusively distributed to the
     students of SiliconGulf Campus and should not be
     distributed, transmitted, or shared without the prior written
     consent of Christopher John Cubos http://
     www.philippineglobaloutsourcing.com/chriscubos ,
     SiliconGulf http://www.silicongulf.com/ or Philippines
     Outsourcing http://www.philippineglobaloutsourcing.com/ .

     This class material should be discussed by a trained
     instructor from SiliconGulf to maximize the learning and
     understanding of the topic. Others belong to their respective
     copyright holders.

     © Copyright 2011 SiliconGulf Campus and Christopher John
     Cubos. All Rights Reserved.
Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Disclaimer
  • Course technology and the author specifically
    disclaim any and all other warranties, either
    express or implied, including warranties of
    merchantability, suitability to a particular task or
    purpose, or freedom from errors.
  • Some states do not allow for exclusion of implied
    warranties or limitation of incidental or
    consequential damages, so these limitations
    might not apply to you.

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
SiliconGulf Campus
     SiliconGulf Campus is one of the pioneers of game based learning
     system in the Philippines. Our goal is to combined complex theories
     with fun and excitement of playing games.

     SiliconGulf Campus
     2nd Floor Door #8 Andreliz Bldg.
     #238 Araullo Extension
     8000 Davao City Philippines
     silicongulfcampus@gmail.com
     www.silicongulf.com
     +63 916 477 9322 (globe)
     +63 907 775 6544 (smart)
     +63 922 551 4009 (sun)
     +63 923 725 4512 (sun)
     +63 82 224 1040 (landline)

Yii PHP MVC Framework Aug 2011
www.silicongulf.com
Yii PHP MVC Framework presentation silicongulf.com

Mais conteúdo relacionado

Mais procurados

Why choose Yii framework?
Why choose Yii framework?Why choose Yii framework?
Why choose Yii framework?goodcore
 
RIA with Flex & PHP - Tulsa TechFest 2009
RIA with Flex & PHP  - Tulsa TechFest 2009RIA with Flex & PHP  - Tulsa TechFest 2009
RIA with Flex & PHP - Tulsa TechFest 2009Jason Ragsdale
 
A site in 15 minutes with yii
A site in 15 minutes with yiiA site in 15 minutes with yii
A site in 15 minutes with yiiAndy Kelk
 
Yii Training session-1
Yii Training session-1Yii Training session-1
Yii Training session-1AkkiCredencys
 
Components Approach to building Web Apps
Components Approach to building Web AppsComponents Approach to building Web Apps
Components Approach to building Web AppsVinci Rufus
 
Introduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniterIntroduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniterPongsakorn U-chupala
 
Introduction to PHP H/MVC Frameworks by www.silicongulf.com
Introduction to PHP H/MVC Frameworks by www.silicongulf.comIntroduction to PHP H/MVC Frameworks by www.silicongulf.com
Introduction to PHP H/MVC Frameworks by www.silicongulf.comChristopher Cubos
 
PHP Frameworks & Introduction to CodeIgniter
PHP Frameworks & Introduction to CodeIgniterPHP Frameworks & Introduction to CodeIgniter
PHP Frameworks & Introduction to CodeIgniterJamshid Hashimi
 
Why do developers prefer ionic to build progressive web apps
Why do developers prefer ionic to build progressive web apps  Why do developers prefer ionic to build progressive web apps
Why do developers prefer ionic to build progressive web apps Moon Technolabs Pvt. Ltd.
 
PHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniterPHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniterKHALID C
 
Microservice Approach for Web Development with Micro Frontends
Microservice Approach for Web Development with Micro FrontendsMicroservice Approach for Web Development with Micro Frontends
Microservice Approach for Web Development with Micro Frontendsandrejusb
 
Laravel 9 is now out – how is an improvement over its predecessors
Laravel 9 is now out – how is an improvement over its predecessorsLaravel 9 is now out – how is an improvement over its predecessors
Laravel 9 is now out – how is an improvement over its predecessorsMoon Technolabs Pvt. Ltd.
 
Introduction To CodeIgniter
Introduction To CodeIgniterIntroduction To CodeIgniter
Introduction To CodeIgniterschwebbie
 
Mainframe, the fast PHP framework
Mainframe, the fast PHP frameworkMainframe, the fast PHP framework
Mainframe, the fast PHP frameworkbibakis
 
Codeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginnerCodeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginneraminbd
 

Mais procurados (20)

Why choose Yii framework?
Why choose Yii framework?Why choose Yii framework?
Why choose Yii framework?
 
RIA with Flex & PHP - Tulsa TechFest 2009
RIA with Flex & PHP  - Tulsa TechFest 2009RIA with Flex & PHP  - Tulsa TechFest 2009
RIA with Flex & PHP - Tulsa TechFest 2009
 
yii framework
yii frameworkyii framework
yii framework
 
A site in 15 minutes with yii
A site in 15 minutes with yiiA site in 15 minutes with yii
A site in 15 minutes with yii
 
P H P Framework
P H P  FrameworkP H P  Framework
P H P Framework
 
Yii Training session-1
Yii Training session-1Yii Training session-1
Yii Training session-1
 
Components Approach to building Web Apps
Components Approach to building Web AppsComponents Approach to building Web Apps
Components Approach to building Web Apps
 
Introduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniterIntroduction to MVC Web Framework with CodeIgniter
Introduction to MVC Web Framework with CodeIgniter
 
Introduction to PHP H/MVC Frameworks by www.silicongulf.com
Introduction to PHP H/MVC Frameworks by www.silicongulf.comIntroduction to PHP H/MVC Frameworks by www.silicongulf.com
Introduction to PHP H/MVC Frameworks by www.silicongulf.com
 
Dependency Injection with Apex
Dependency Injection with ApexDependency Injection with Apex
Dependency Injection with Apex
 
Php Framework
Php FrameworkPhp Framework
Php Framework
 
PHP Frameworks & Introduction to CodeIgniter
PHP Frameworks & Introduction to CodeIgniterPHP Frameworks & Introduction to CodeIgniter
PHP Frameworks & Introduction to CodeIgniter
 
Why do developers prefer ionic to build progressive web apps
Why do developers prefer ionic to build progressive web apps  Why do developers prefer ionic to build progressive web apps
Why do developers prefer ionic to build progressive web apps
 
PHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniterPHP Frameworks and CodeIgniter
PHP Frameworks and CodeIgniter
 
Top 5 advanced php framework in 2018
Top 5 advanced php framework in 2018Top 5 advanced php framework in 2018
Top 5 advanced php framework in 2018
 
Microservice Approach for Web Development with Micro Frontends
Microservice Approach for Web Development with Micro FrontendsMicroservice Approach for Web Development with Micro Frontends
Microservice Approach for Web Development with Micro Frontends
 
Laravel 9 is now out – how is an improvement over its predecessors
Laravel 9 is now out – how is an improvement over its predecessorsLaravel 9 is now out – how is an improvement over its predecessors
Laravel 9 is now out – how is an improvement over its predecessors
 
Introduction To CodeIgniter
Introduction To CodeIgniterIntroduction To CodeIgniter
Introduction To CodeIgniter
 
Mainframe, the fast PHP framework
Mainframe, the fast PHP frameworkMainframe, the fast PHP framework
Mainframe, the fast PHP framework
 
Codeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginnerCodeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginner
 

Destaque

YiiConf 2012 - Alexander Makarov - Yii2, what's new
YiiConf 2012 - Alexander Makarov - Yii2, what's newYiiConf 2012 - Alexander Makarov - Yii2, what's new
YiiConf 2012 - Alexander Makarov - Yii2, what's newAlexander Makarov
 
PHP Unit Testing in Yii
PHP Unit Testing in YiiPHP Unit Testing in Yii
PHP Unit Testing in YiiIlPeach
 
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.Bicol IT.org
 
Devconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developedDevconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developedAlexander Makarov
 
PHP MVC Tutorial
PHP MVC TutorialPHP MVC Tutorial
PHP MVC TutorialYang Bruce
 
Introduction Yii Framework
Introduction Yii FrameworkIntroduction Yii Framework
Introduction Yii FrameworkTuan Nguyen
 
HTML5 JavaScript APIs
HTML5 JavaScript APIsHTML5 JavaScript APIs
HTML5 JavaScript APIsRemy Sharp
 

Destaque (12)

YiiConf 2012 - Alexander Makarov - Yii2, what's new
YiiConf 2012 - Alexander Makarov - Yii2, what's newYiiConf 2012 - Alexander Makarov - Yii2, what's new
YiiConf 2012 - Alexander Makarov - Yii2, what's new
 
Introduce Yii
Introduce YiiIntroduce Yii
Introduce Yii
 
Yii Introduction
Yii IntroductionYii Introduction
Yii Introduction
 
PHP Unit Testing in Yii
PHP Unit Testing in YiiPHP Unit Testing in Yii
PHP Unit Testing in Yii
 
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.
1ST TECH TALK: "Yii : The MVC framework" by Benedicto B. Balilo Jr.
 
Devconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developedDevconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developed
 
PHP MVC Tutorial
PHP MVC TutorialPHP MVC Tutorial
PHP MVC Tutorial
 
Introduction Yii Framework
Introduction Yii FrameworkIntroduction Yii Framework
Introduction Yii Framework
 
PHP & MVC
PHP & MVCPHP & MVC
PHP & MVC
 
PHP MVC
PHP MVCPHP MVC
PHP MVC
 
HTML5 JavaScript APIs
HTML5 JavaScript APIsHTML5 JavaScript APIs
HTML5 JavaScript APIs
 
Model View Controller (MVC)
Model View Controller (MVC)Model View Controller (MVC)
Model View Controller (MVC)
 

Semelhante a Yii PHP MVC Framework presentation silicongulf.com

CodeIgniter - PHP MVC Framework by silicongulf.com
CodeIgniter - PHP MVC Framework by silicongulf.comCodeIgniter - PHP MVC Framework by silicongulf.com
CodeIgniter - PHP MVC Framework by silicongulf.comChristopher Cubos
 
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.com
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.comAdobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.com
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.comChristopher Cubos
 
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...Developing Arcturis - Our game-based learning system using FuelPHP - silicong...
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...Christopher Cubos
 
FuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comFuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comChristopher Cubos
 
Web Services for Fun and Profit
Web Services for Fun and ProfitWeb Services for Fun and Profit
Web Services for Fun and ProfitSimon Willison
 
«I knew there had to be a better way to build mobile app»​
«I knew there had to be a better way to build mobile app»​«I knew there had to be a better way to build mobile app»​
«I knew there had to be a better way to build mobile app»​FDConf
 
Cloud based mobile app development cit 2017
Cloud based mobile app development cit 2017Cloud based mobile app development cit 2017
Cloud based mobile app development cit 2017Praveen Hanchinal
 
Capstone Final Presentation
Capstone Final PresentationCapstone Final Presentation
Capstone Final PresentationDevang Doshi
 
API Introduction - API Management Workshop Munich from Ronnie Mitra
API Introduction - API Management Workshop Munich from Ronnie MitraAPI Introduction - API Management Workshop Munich from Ronnie Mitra
API Introduction - API Management Workshop Munich from Ronnie MitraCA API Management
 
Web Technology and Standards Tutorial
Web Technology and Standards Tutorial Web Technology and Standards Tutorial
Web Technology and Standards Tutorial Jonathan Jeon
 
I knew there had to be a better way to build mobile apps
I knew there had to be a better way to build mobile appsI knew there had to be a better way to build mobile apps
I knew there had to be a better way to build mobile appsAlius Petraška
 
Why Choose Yii Framework for Your Next Web Development Project?
Why Choose Yii Framework for Your Next Web Development Project?Why Choose Yii Framework for Your Next Web Development Project?
Why Choose Yii Framework for Your Next Web Development Project?Windzoon Technologies
 
Enhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEnhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEric Overfield
 
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016AMASanDiego
 
Modern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik WebinarModern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik WebinarSam Basu
 
Html5 today
Html5 todayHtml5 today
Html5 todayRoy Yu
 

Semelhante a Yii PHP MVC Framework presentation silicongulf.com (20)

CodeIgniter - PHP MVC Framework by silicongulf.com
CodeIgniter - PHP MVC Framework by silicongulf.comCodeIgniter - PHP MVC Framework by silicongulf.com
CodeIgniter - PHP MVC Framework by silicongulf.com
 
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.com
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.comAdobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.com
Adobe Edge Technology Preview - Web Development Month 2011 SiliconGulf.com
 
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...Developing Arcturis - Our game-based learning system using FuelPHP - silicong...
Developing Arcturis - Our game-based learning system using FuelPHP - silicong...
 
FuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comFuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.com
 
Web Services for Fun and Profit
Web Services for Fun and ProfitWeb Services for Fun and Profit
Web Services for Fun and Profit
 
HTML5@Neev
HTML5@NeevHTML5@Neev
HTML5@Neev
 
«I knew there had to be a better way to build mobile app»​
«I knew there had to be a better way to build mobile app»​«I knew there had to be a better way to build mobile app»​
«I knew there had to be a better way to build mobile app»​
 
Cloud based mobile app development cit 2017
Cloud based mobile app development cit 2017Cloud based mobile app development cit 2017
Cloud based mobile app development cit 2017
 
Capstone Final Presentation
Capstone Final PresentationCapstone Final Presentation
Capstone Final Presentation
 
API Introduction - API Management Workshop Munich from Ronnie Mitra
API Introduction - API Management Workshop Munich from Ronnie MitraAPI Introduction - API Management Workshop Munich from Ronnie Mitra
API Introduction - API Management Workshop Munich from Ronnie Mitra
 
Web Technology and Standards Tutorial
Web Technology and Standards Tutorial Web Technology and Standards Tutorial
Web Technology and Standards Tutorial
 
I knew there had to be a better way to build mobile apps
I knew there had to be a better way to build mobile appsI knew there had to be a better way to build mobile apps
I knew there had to be a better way to build mobile apps
 
Why Choose Yii Framework for Your Next Web Development Project?
Why Choose Yii Framework for Your Next Web Development Project?Why Choose Yii Framework for Your Next Web Development Project?
Why Choose Yii Framework for Your Next Web Development Project?
 
Enhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEnhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web Design
 
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016
Ignite Visibility: The Most Important SEO Initiatives to Plan for in 2016
 
Yii vs codeigneiter
Yii vs codeigneiterYii vs codeigneiter
Yii vs codeigneiter
 
ITO'13 Orientation
ITO'13 OrientationITO'13 Orientation
ITO'13 Orientation
 
Presentation
PresentationPresentation
Presentation
 
Modern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik WebinarModern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik Webinar
 
Html5 today
Html5 todayHtml5 today
Html5 today
 

Último

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 

Yii PHP MVC Framework presentation silicongulf.com

  • 1. Yii Framework CHRISTOPHER JOHN CUBOS WEB DESIGN AND DEVELOPMENT MONTH (AUGUST 2011) COLLEGES & UNIVERSITIES DAVAO CITY PHILIPPINES Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 2. Your First Animation Clicking your way through Adobe Edge
  • 3. Who is Chris Cubos • Started programming at age 10 (1985) • Created his first website (1995) • The first web designer/developer in Mindanao • Been doing this for 26 years and still learning • Won the first web design competition in the Philippines (1995) held in Cebu City • Developed his first CD-ROM application (1996) • Developed his first flash site (1995) … forward to the present Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 4. Tech Stuff • Languages: Q/BASIC/A, Pascal, C, C++, Assembly, PHP, JavaScript, VBScript, ASP, AutoLISP, Lingo, ActionScripting, etc… • PHP Frameworks: CodeIgniter, FuelPHP • CMS: Wordpress, Drupal, Joomla, Mambo, etc • Applications: Photoshop, Dreamweaver, Illustrator, AfterEffects, Premiere, CS, etc… Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 5. 1st Web Development Company • Won the Philippine Webby Awards for Multimedia Category • Won Davao Web Design Competition in multiple categories and the overall best web design • 1st Company to develop flash based applications • 1st Company to develop multimedia CD-ROMs • 1st Company to develop web portals • 2nd Company to develop a PH search engine • Won multiple awards in web design, logo design Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 6. Yes the present • He currently devotes his time helping students enhance their skills with the non-profit organization called the SiliconGulf Initiative • He is also organizing large I.T. events in the Davao and currently organized the most number of I.T. events in a single month. • Furthermore, he is currently developing the the first game-based training center in Mindanao Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 7. Brewing • We are currently developing the first game-based training center in Mindanao • Multiple mobile apps and games • Organizing multiple upcoming I.T. events Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 8. What is Yii Framework? • Yii is a high-performance PHP framework best for developing Web 2.0 applications. • Yii helps Web developers build complex applications and deliver them on-time. • Yii is pronounced as Yee or [ji:], and is an acroynym for "Yes It Is!". This is often the accurate, and most concise response to inquires from those new to Yii • Yii is the brainchild of Qiang Xue, who started the project on January 1, 2008 Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 9.
  • 10. More about Yii • Yii is a free, open-source Web application development framework written in PHP5 that promotes clean, DRY design and encourages rapid development. • It works to streamline your application development and helps to ensure an extremely efficient, extensible, and maintainable end product. • Being extremely performance optimized, Yii is a perfect choice for any sized project. • It has been built with sophisticated, enterprise applications in mind. • You have full control over the configuration. Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 11. Basic Facts • 1 Year in the making • Model-View-Controller (MVC) design pattern • Based on Prado, RoR, Symfony, Joomla • AJAX-enabled widgets • Database Access Objects (DAO), Query Builder, Active Record, DB Migration • Form input and validation • Skinning and theming • Authentication and authorization Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 12. Quick Facts • Web services • Internationalization (I18N) and localization (L10N) • Layered caching scheme • Error handling and logging • Security • Unit and functionality testing • Automatic code generation Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 13. Fast Facts • Compliance to XHTML • Purely object-oriented • Friendly with third-party code • Detailed documentation • Extension library Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 14. Why choose Yii • Generate applications fast with base examples (blog, hangman, hello world, phone book) Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 15. Getting Started: Download www.Yiiframework.com • Framework • Documentation • Demos – Blog – Hangman – Hello World – Phone Book Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 16. Requirements • PHP Version – 5.1 • $_SERVER variable • Reflection extension • PCRE extension • APC extension Check if your setup meet the requirements • /localhost/requirements/index.php Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 17. Installing: Windows • Install Server • Download Yii • Install • Requirements • Code Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 18. Recommended Tools • Adobe Dreamweaver • CodeLobster • E-texteditor • Komodo • Eclipse • Google Chrome • WAMP • Notepad++ • Navicat Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 19. Let’s Code .. Not!!! Excited, hehe Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 20. Yiic and Gii • Yiic (command line tool) - create an application • Gii (powerful web based code generator) - automate code creation for certain tasks Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 21. Yiic.php php framework/yiic.php webapp myfirst • This will create a skeleton Yii application under the directory _root/myfirst. • The application has a directory structure that is needed by most Yii applications. Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 22. Command Line Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 23. Results Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 24. The Generated Code http://localhost/myfirst Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 25. Configuring Gii localhostmyfirstprotectedconfigmain.php 'modules'=>array( // uncomment the following to enable the Gii tool 'gii'=>array( 'class'=>'system.gii.GiiModule', 'password'=>'password', 'ipFilters'=>array('127.0.0.1','::1'), ), ), http://localhost/myfirst/index.php?r=gii Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 26. Gii the GUI Generator • Create – Controllers – CRUD – Forms – Models – Modules Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 27. What’s next • Research • Compare • Develop Applications • Test • And do it all over again. Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 28. Thanks Oops… There’s more Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 29.
  • 30. Full year of IT Events August 2011: Web Development Month September 2011: Mobile Application Month October 2011: Animation Month November 2011: Bloggers Month December 2011: SEO Month January 2012: Technopreneurship Month February 2012: I.T. Education Month March 2012: I.T. Career Month April 2012: Gaming Month May 2012: Graphic Design Month June 2012: Hacking and Network Security Month July 2012: Software Development Month Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 31. August I.T. Events by PGO University of Southeastern Philippines (USEP) Friday, August 12 · 9:00am - 11:30am http://www.facebook.com/event.php?eid=229646943743096 John Paul II College (JP2C) Saturday, August 13 · 9:00am - 4:00pm http://www.facebook.com/event.php?eid=220035684709122 University of Mindanao (UM) Wednesday, August 17 · 1:00pm - 5:00pm http://www.facebook.com/event.php?eid=245697658786703 University of Immaculate Conception (UIC) Saturday, August 20 · 1:00pm - 5:00pm http://www.facebook.com/event.php?eid=231713253532167 ACLC Monday, August 22 · 1:00pm - 4:00pm http://www.facebook.com/event.php?eid=231458190229578 Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 32. August I.T. Events by PGO Holy Cross (HCDC) Tuesday, August 23 · 3:00pm - 6:00pm http://www.facebook.com/event.php?eid=253809011309471 InterCity College of Science and Technology (ICST) Wednesday, August 24 · 9:00pm - 11:00pm http://www.facebook.com/event.php?eid=225237414194879 AMA Computer College Thursday, August 25 · 9:30am - 1:00pm http://www.facebook.com/event.php?eid=138109472943706 STI College Friday, August 26 · 1:00am - 4:00pm http://www.facebook.com/event.php?eid=124462760983852 Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 33. Competition On-the-spot Student Web Design Competition August 27, 2011 http://www.facebook.com/event.php?eid=241281559236739 Entries can be found at http://www.silicongulf.com/competitions/web_design Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 34. Our Loving Supporters • The SiliconGulf Initiative • Davao IT • Adobe User Group • PHP Philippines • Developers, Entrepreneurs, Artists of Davao • SEO-Philippines • The IT School with no name yet • Philippine Global Outsourcing Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 35. Thanks To all speakers, PHP framework developers, our team at Philippine Global Outsourcing, students of all participating schools To the Yii Framework Development Team for this wonderful piece of software. Learn from the best www.silicongulf.com Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 36. Contact 2nd Floor Door #8 Andreliz Bldg #238 Araullo Extension 8000 Davao City Philippines philippineoutsourcing@gmail.com www.philippineglobaloutsourcing.com +63 916 477 9322 (globe) +63 907 775 6544 (smart) +63 922 551 4009 (sun) +63 923 725 4512 (sun) +63 82 224 1040 (landline) Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 37. Copyright This reference material is exclusively distributed to the students of SiliconGulf Campus and should not be distributed, transmitted, or shared without the prior written consent of Christopher John Cubos http:// www.philippineglobaloutsourcing.com/chriscubos , SiliconGulf http://www.silicongulf.com/ or Philippines Outsourcing http://www.philippineglobaloutsourcing.com/ . This class material should be discussed by a trained instructor from SiliconGulf to maximize the learning and understanding of the topic. Others belong to their respective copyright holders. © Copyright 2011 SiliconGulf Campus and Christopher John Cubos. All Rights Reserved. Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 38. Disclaimer • Course technology and the author specifically disclaim any and all other warranties, either express or implied, including warranties of merchantability, suitability to a particular task or purpose, or freedom from errors. • Some states do not allow for exclusion of implied warranties or limitation of incidental or consequential damages, so these limitations might not apply to you. Yii PHP MVC Framework Aug 2011 www.silicongulf.com
  • 39. SiliconGulf Campus SiliconGulf Campus is one of the pioneers of game based learning system in the Philippines. Our goal is to combined complex theories with fun and excitement of playing games. SiliconGulf Campus 2nd Floor Door #8 Andreliz Bldg. #238 Araullo Extension 8000 Davao City Philippines silicongulfcampus@gmail.com www.silicongulf.com +63 916 477 9322 (globe) +63 907 775 6544 (smart) +63 922 551 4009 (sun) +63 923 725 4512 (sun) +63 82 224 1040 (landline) Yii PHP MVC Framework Aug 2011 www.silicongulf.com