Cargando…

Mastering Yii : advance your modern web application development skills with Yii Framework 2 /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Portwood, Charles R., II (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2016.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn939394583
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160215s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d TEFOD  |d DEBBG  |d C6I  |d YDXCP  |d IDEBK  |d DEBSZ  |d N$T  |d NLE  |d OCLCQ  |d OCLCF  |d CEF  |d OCLCQ  |d UKMGB  |d AGLDB  |d IGB  |d UKAHL  |d RDF  |d OCLCO  |d OCLCQ  |d QGK  |d OCLCO 
015 |a GBB799023  |2 bnb 
016 7 |a 018010644  |2 Uk 
019 |a 936538809  |a 936630064  |a 958945584  |a 1259103914 
020 |a 9781785888649  |q (electronic bk.) 
020 |a 1785888641  |q (electronic bk.) 
020 |z 9781785882425 
020 |z 1785882422 
029 1 |a DEBBG  |b BV043968897 
029 1 |a DEBSZ  |b 473885441 
029 1 |a DEBSZ  |b 485794098 
029 1 |a GBVCP  |b 882752987 
029 1 |a UKMGB  |b 018010644 
035 |a (OCoLC)939394583  |z (OCoLC)936538809  |z (OCoLC)936630064  |z (OCoLC)958945584  |z (OCoLC)1259103914 
037 |a CL0500000715  |b Safari Books Online 
037 |a D2593935-570C-4CBE-9E86-7BFE9911A861  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.76.A65 
072 7 |a COM  |x 051440  |2 bisacsh 
082 0 4 |a 005.3  |2 23 
049 |a UAMI 
100 1 |a Portwood, Charles R.,  |c II,  |e author. 
245 1 0 |a Mastering Yii :  |b advance your modern web application development skills with Yii Framework 2 /  |c Charles R. Portwood II. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover page (Safari, viewed February 12, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Advance your modern web application development skills with Yii Framework 2About This Book Learn to work with the key aspects of Yii Framework 2 Explore how to create RESTful APIs with Yii Incorporate codeception with Yii2 to test your code thoroughlyWho This Book Is ForThis book is for Yii Framework developers who want to quickly master Yii2. This book assumes some familiarity with Yii2, PHP 5, and HTML5. What You Will Learn Explore Yii2's conventions and learn how to properly configure Yii2 Create both web and console applications Reduce development time by learning to create classes automatically with Gii, Yii2's automatic code generation tool Use Yii2's database migration tool Manage and access databases with Active Record, DAO, and Query Builder Handle user authentication and authorization within Yii2 Create RESTful APIs with Yii Framework 2 Test applications automatically with codeceptionIn DetailThe successor of Yii Framework 1.1, Yii2 is a complete rewrite of Yii Framework, one of the most popular PHP 5 frameworks for making modern web applications. The update embraces the best practices and protocols established with newer versions of PHP, while still maintaining the simple, fast, and extendable behavior found in its predecessor. This book has been written to enhance your skills and knowledge with Yii Framework 2. Starting with configuration and how to initialize new projects, you'll learn how to configure, manage, and use every aspect of Yii2 from Gii, DAO, Query Builder, Active Record, and migrations, to asset manager. You'll also discover how to automatically test your code using codeception. With this book by your side, you'll have all the skills you need to quickly create rich modern web and console applications with Yii2. Style and approach This book is a step-by-step guide to mastering every aspect of Yii Framework 2. Each chapter outlines a new set of tools along with code that can be used to efficiently create modern web and console applications. 
505 0 |a Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Composer, Configuration, Classes, and Path Aliases ; Composer; Configuration; Requirements checker; Entry scripts; Web entry script; Configuration files; Web and console configuration files; Database configuration; Parameter configuration; Environment configuration; Setting up our application environment; Setting the web environment for NGINX; Setting the web environment for Apache; Components and objects; Components; Objects; Path aliases; Summary 
505 8 |a Chapter 2: Console Commands and Applications Configuration and usage; Entry script; Configuration; Setting the console environment; Running console commands; Built-in console commands; The help command; The asset command; The cache command; The fixture command; The Gii command; The message command; The migration command; Creating console commands; Generating help information; Passing command-line arguments; Exit codes; Formatting; Summary; Chapter 3: Migrations, DAO, and Query Building ; Connecting to databases; Additional configuration options; Writing database migrations 
505 8 |a An overview of schemaWriting migrations; Running migrations; Altering a database schema; Database access objects; Querying for data; Quoting table and column names; Executing queries; Parameter binding; Transactions; Query Builder; Query construction methods; The select method; The from method; The where method; Ordering results; Limiting and offsetting data; Grouping and having; Joins and unions; Executing queries; Examining queries; Iterating over query results; Data providers and data widgets; Data replication and load balancing; Summary; Chapter 4: Active Record, Models, and Forms 
505 8 |a Configuring GiiGii for web applications; Gii for console applications; Active Record; The Active Record pattern; Creating Active Record classes; Creating active record classes with Gii; Working with Active Record; Model validation rules; Adding custom validators; Customizing validator error messages; Working with validation errors; Manually executing validation rules; Model attribute labels; Active Record relationships; Using multiple database connections with Active Record; Behaviors in Active Record; Working with Active Record; Querying data; Saving data; Deleting data; Active Record events 
505 8 |a ModelsModel attributes; Scenarios; Forms; Generating forms with Gii; Generating forms with Gii's web interface; Generating forms with Gii's console interface; Using forms; ActiveForm and input types; Summary; Chapter 5: Modules, Widgets, and Helpers ; Modules; Module components; The module class structure; Controllers; Views and layouts; Registering modules; Accessing modules; Managing modules with Composer; Modules in summary; Widgets; Using widgets; Commonly used built-in widgets; Bootstrap widgets; jQuery UI widgets; Yii-specific widgets; Creating custom widgets; A summary of widgets 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Web applications  |x Development. 
650 0 |a Software frameworks. 
650 6 |a Applications Web  |x Développement. 
650 6 |a Cadres d'applications (Informatique) 
650 7 |a COMPUTERS  |x Software Development & Engineering  |x Tools.  |2 bisacsh 
650 7 |a Software frameworks  |2 fast 
776 |z 1-78588-242-2 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163370  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH30053570 
938 |a EBSCOhost  |b EBSC  |n 1163370 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33698657 
938 |a YBP Library Services  |b YANK  |n 12831318 
994 |a 92  |b IZTAP