"Erd辿lyi Tam叩s (netpeople.hu) elad叩s叩ban besz辿lni fog a legfontosabb v叩ltoz叩sokr坦l 辿s hogy mi辿rt is lesz ez j坦 nek端nk. R旦viden, c鱈mszavakban sz坦 lesz a megv叩ltozott k旦nyvt叩rstrukt炭r叩r坦l, az 炭j valid叩ci坦s lehets辿gekrl, a f叩jlgener叩torokr坦l, a f叩jlrendszer el辿r辿s辿t kibv鱈t, 炭j alap package-rl, a Flysystemrl 辿s az 炭n. Contractokr坦l, amelyek m辿g 叩tl叩that坦bb, tiszt叩bb keretet adnak a rendszernek."
http://www.meetup.com/laravelbp/events/213586752/
Szekeres B叩lint - Laravel PHP Framework - Fejlessz端nk mint a profik
Minek framework? Mi辿rt Laravel? Ha a Hello World PHP-ban m叩r a kisujjadban van, 辿s tudod, hogy mit jelent az n:m adatb叩zis kapcsolat, akkor elmes辿lem neked, hogy legy辿l Laravel sensei!
R旦vid t旦rt辿nelmi 叩ttekint辿s az id辿n m叩jusban verzi坦sz叩mot l辿pett Laravel PHP keretrendszerrl, fel辿p鱈t辿s辿rl 辿s elnyeirl is. Ezen k鱈v端l sz坦ba ker端ltek m辿g a 2013. november v辿g辿n 辿rkez 4.1-es friss鱈t辿s 炭jdons叩gai is.
Brian Feaver gives an overview of the Laravel PHP framework. He explains that Laravel is built on Symfony components and provides services and libraries to make interacting with web requests easier. The basics covered include routing, controllers, templating with Blade, and Eloquent ORM. Cool features highlighted are Artisan, dependency injection, queues, middleware, filesystem abstraction, and built-in authentication. Facades are discussed as a way to access underlying services, though injecting services directly is preferable.
This Hungarian presentation introduces the new features of Internet Information Services 7.5 for system administrators.
Presented on local Technet event on 2 December 2009.
This Hungarian presentation introduces the new features of Internet Information Services 7.5 for system administrators.
Presented on local Technet event on 2 December 2009.
11. Mik azok a contractok?
Core service interface-ek gy撤jtem辿nye
Minden service-hez az interface-ek alapj叩n
van 鱈rva egy implement叩ci坦
A Laravel alapvet funkci坦i k旦nnyen
kibv鱈thetek
https://github.com/illuminate/contracts
12. P辿lda: Config contract
// Config/Repository.php
namespace IlluminateContractsConfig;
interface Repository {
public function has($key);
public function get($key, $default = null);
public function set($key, $value);
}
16. j f叩jlstrukt炭ra
app
Console
Http
Controllers
Filters
Requests
Providers
bootstrap
config
database
migrations
seeds
public
resources
lang
views
storage
cache
logs
meta
sessions
views
work
17. j f叩jlstrukt炭ra
Alap辿rtelmezett alkalmaz叩s namespace (App)
php artisan app:name SzuperAlkalmazas
php artisan app:name
SzuperVendorSzuperAlkalmazas
PSR-0 helyett PSR-4 autoloading
Az app mostant坦l csak az 端zleti logik叩t tartalmazza
18. Business or domain logic
Part of the program that encodes the
real-world business rules that
determine how data can be created,
displayed, stored, and changed
34. s ha m辿g nem volna el辿g
j helperek: get(), view(), redirect()
Middleware: filterek helyett / mellett, request
辿s response k旦z旦tt (http://fideloper.com/
laravel-http-middleware)
Socialite: k旦z旦ss辿gi authentik叩ci坦 package
az Auth-hoz (https://github.com/laravel/
socialite)