yii introduction

13
Yii

Upload: chandra-oemaryadi

Post on 29-Nov-2014

2.084 views

Category:

Technology


3 download

DESCRIPTION

Simple slide about introduction to yii. I used it in knowledge sharing session with my teammates. Cover why yii, what rocks on yii, and dark sides of yii.

TRANSCRIPT

Page 1: Yii Introduction

Yii

Page 2: Yii Introduction

Outline

• Why Yii?• What rocks on Yii?• Dark sides of Yii

Page 3: Yii Introduction

Why Yii?

• Better performance compare to other php frameworks

• Awesome documentation and tutorial (included in source code package)

• Less code• More features compare to CodeIgniter

Page 4: Yii Introduction

http://www.yiiframework.com/performance/

Page 5: Yii Introduction

What’s rock in Yii?

• Gii• ActiveRecord (+Relational)• Built in authentication• User Friendly Url

Page 6: Yii Introduction

Gii

Page 7: Yii Introduction

Gii

• Create CRUD in a blink!

Page 8: Yii Introduction

Gii

1. Define table2. Use model generator3. Use CRUD generator4. Voila!

Page 9: Yii Introduction

ActiveRecord (+Relational)

• It works!• Requirement:– Declare foreign key in MySQL– Use gii Model Generator

$post = Post::model()->findByPk(2);$comments = $post->comments;foreach($comments as $r){ echo $r->content;}

Page 10: Yii Introduction

Built in Authentication

• Yii provide login form• We only need to modify

components/UserIdentity to give additional information in user session

Page 11: Yii Introduction

User Friendly Url

• http://localhost/yii/test/createPost

Page 12: Yii Introduction

Many More…

• Caching• Theming• Etc …

Page 13: Yii Introduction

Dark Sides of Yii

• Slower learing curve