hi! - razvoj · pdf file- yii framework - symfony - phalcon laravel - moderan mvc php...

26
Hi!

Upload: dotuong

Post on 06-Mar-2018

260 views

Category:

Documents


8 download

TRANSCRIPT

Page 1: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Hi!

Page 2: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

PHP wrong (old) way

<?php

//connect to db

//get items

//show in html

//get other items

//show in html

//close connection

?> <h1>some html here</h1>

Page 3: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

MVC patern

Page 4: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

controller

model

view

Page 5: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:
Page 6: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Composer

- npm, bundler za PHP- Oko 50.000 PHP biblioteka na Packagist- composer.json- autoloading, vendor

Page 7: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

PHP frameworks

- Silex

- Medoo

- Flight

- Fuel PHP

- Slim Framework

- Kohana

- Zend Framework

- Aura

- Cake PHP

- CodeIgniter

- Yii Framework

- Symfony

- Phalcon

Page 8: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Laravel

- Moderan MVC PHP framework- Najpopularniji PHP projekat na GitHub-u- Kreator – Tejlor Otvel (Taylor Otwell)- Jednostavan, intuitivan- Verzija 4.2- Uskoro verzija 5

Page 9: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

LARAVEL 101

Page 10: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Laravel karakteristike- Fleksibilno rutiranje- Korišćenje Composer paketa- Eloquent ActiveRecord ORM- Artisan (upravljanje preko komandne linije)- Drajveri za autentikaciju- Cache drajveri- Queue drajveri- Dependency Injection / IoC container- …

Page 11: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Instalacija> composer create-project laravel/laravel my-app

Page 12: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Struktura aplikacije

Page 13: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Kontrolerclass UserController extends BaseController {

public function showProfile($id)

{

$user = User::find($id);

return View::make('user.profile', array('user' => $user));

}

}

Page 14: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Modelclass User extends Eloquent {}

Page 15: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

View<html>

<body>

<h1>Zdravo, {{ $name }}</h1>

</body>

</html>

Page 16: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Blade<html>

<body>

@section('sidebar')

Ovo je glavni sidebar.

@show

<div class="container">

@yield('sadrzaj')

</div>

</body>

</html>

Page 17: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Blade@extends('layouts.master')

@section('sidebar')

<p>Ovo će biti dodato u master sidebar.</p>

@stop

@section('sadrzaj')

<p>Ja sam sadržaj stranice.</p>

@stop

Page 18: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Blade- {{ $promenljiva or ‘nije definisano’ }}

- {{{ $promenljiva }}} // XSS scripting

- @if, @endif, @foreach, @endforeach

Page 19: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Rutiranje- Rutiranje ka kontroleru (RESTful i non RESTful)- Rutiranje ka closure-u- Rutiranje ka resursima

Page 20: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Rutiranje ka closure-u

Route::get('/', function() { return 'Zdravo!';

});

Route::get('/korisnik/{id}', function($id) {

return ‘Podaci za korisnika ' . $id;

})->where('id', '[0-9]+') ;

http://nas-sajt.com/

http://nas-sajt.com/korisnik/1

Page 21: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Rutiranje ka kontroleru

Route::get('/', 'HomeController@index');

Route::post('korisnik/1/', 'UserController@create');

Page 22: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Rutiranje – grupe i filteriRoute::group(['before' => 'auth'], function() {

Route::get('korisnik/info', 'UserController@info');

});

Route::filter('auth', function() {

if (Auth::guest()) {

return Redirect::route('greska');

}

});

Page 23: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Artisan# php artisan list //lista komandi

# php artisan serve //interni web-server

# php artisan routes //lista ruta

# php artisan generate:migration //generisanje migracije

# php artisan tinker //igralište

# …

Page 24: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Illuminate biblioteke- app/config/app.php

Illuminate\Foundation\Providers\ArtisanServiceProvider

Illuminate\Auth\AuthServiceProvider

Illuminate\Cache\CacheServiceProvider

Illuminate\Session\CommandsServiceProvider

Illuminate\Foundation\Providers\ConsoleSupportServicePr

ovider

Illuminate\Routing\ControllerServiceProvider

Illuminate\Cookie\CookieServiceProvider

Illuminate\Database\DatabaseServiceProvider

Illuminate\Encryption\EncryptionServiceProvider

Illuminate\Filesystem\FilesystemServiceProvider

Illuminate\Hashing\HashServiceProvider

Illuminate\Html\HtmlServiceProvider

Illuminate\Log\LogServiceProvider

Illuminate\Mail\MailServiceProvider

Illuminate\Database\MigrationServiceProvider

Illuminate\Pagination\PaginationServiceProvider

Illuminate\Queue\QueueServiceProvider

Illuminate\Redis\RedisServiceProvider

Illuminate\Remote\RemoteServiceProvider

Illuminate\Auth\Reminders\ReminderServiceProvider

Illuminate\Database\SeedServiceProvider

Illuminate\Session\SessionServiceProvider

Illuminate\Translation\TranslationServiceProvider

Illuminate\Validation\ValidationServiceProvider

Illuminate\View\ViewServiceProvider

Illuminate\Workbench\WorkbenchServiceProvider

Page 25: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Korisne biblioteke- way/generators

- intervention/image

- barryvdh/laravel-debugbar

- cartalyst/sentry

Page 26: Hi! - Razvoj  · PDF file- Yii Framework - Symfony - Phalcon  Laravel - Moderan MVC PHP framework ... PowerPoint Presentation Author: Goran Militarov Created Date:

Vagrant & PuPHPet- Jednostavan GUI za kreiranje virtuelnih mašina

- Ubuntu, Debian, CentOS …

- Apache, Nginx…

- MySQL, PostgreSQL, Mongo, Redis…

vagrant up