SlideShare a Scribd company logo
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

More Related Content

What's hot

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 yii
Andy Kelk
 
P H P Framework
P H P  FrameworkP H P  Framework
P H P Framework
Animesh Kumar
 
Yii Training session-1
Yii Training session-1Yii Training session-1
Yii Training session-1
AkkiCredencys
 
Components Approach to building Web Apps
Components Approach to building Web AppsComponents Approach to building Web Apps
Components Approach to building Web Apps
Vinci 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.com
Christopher Cubos
 
Dependency Injection with Apex
Dependency Injection with ApexDependency Injection with Apex
Dependency Injection with Apex
Salesforce Developers
 
Php Framework
Php FrameworkPhp Framework
Php Framework
cncwebworld
 
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 CodeIgniter
KHALID C
 
Top 5 advanced php framework in 2018
Top 5 advanced php framework in 2018Top 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
andrejusb
 
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
Moon Technolabs Pvt. Ltd.
 
Introduction To CodeIgniter
Introduction To CodeIgniterIntroduction To CodeIgniter
Introduction To CodeIgniter
schwebbie
 
Mainframe, the fast PHP framework
Mainframe, the fast PHP frameworkMainframe, the fast PHP framework
Mainframe, the fast PHP framework
bibakis
 
Codeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginnerCodeigniter, a MVC framework for beginner
Codeigniter, a MVC framework for beginner
aminbd
 

What's hot (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
 

Viewers also liked

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
 
Introduce Yii
Introduce YiiIntroduce Yii
Introduce Yii
zakieh alizadeh
 
Yii Introduction
Yii IntroductionYii Introduction
Yii Introduction
Chandra S Oemarjadi
 
PHP Unit Testing in Yii
PHP Unit Testing in YiiPHP Unit Testing in Yii
PHP Unit Testing in Yii
IlPeach
 
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 developed
Alexander Makarov
 
PHP MVC Tutorial
PHP MVC TutorialPHP MVC Tutorial
PHP MVC TutorialYang Bruce
 
Introduction Yii Framework
Introduction Yii FrameworkIntroduction Yii Framework
Introduction Yii Framework
Tuan Nguyen
 
PHP MVC
PHP MVCPHP MVC
HTML5 JavaScript APIs
HTML5 JavaScript APIsHTML5 JavaScript APIs
HTML5 JavaScript APIs
Remy Sharp
 

Viewers also liked (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)
 

Similar to 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.com
Christopher 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.com
Christopher 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.com
Christopher Cubos
 
Web Services for Fun and Profit
Web Services for Fun and ProfitWeb Services for Fun and Profit
Web Services for Fun and Profit
Simon Willison
 
HTML5@Neev
HTML5@NeevHTML5@Neev
HTML5@Neev
Neev Technologies
 
«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 2017
Praveen Hanchinal
 
Capstone Final Presentation
Capstone Final PresentationCapstone Final Presentation
Capstone Final Presentation
Devang 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 Mitra
CA 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 apps
Alius 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 Design
Eric 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 2016
AMASanDiego
 
Presentation
PresentationPresentation
Presentation
Nikhilesh Sharma
 
Modern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik WebinarModern .NET Apps - Telerik Webinar
Modern .NET Apps - Telerik Webinar
Sam Basu
 
Html5 today
Html5 todayHtml5 today
Html5 todayRoy Yu
 

Similar to 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
 

Recently uploaded

Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 

Recently uploaded (20)

Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 

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