Yii 2 Para Principiantes
Yii 2 Para Principiantes
Sobre este libro
Yii 2 para principiantes lo llevará paso a paso a través de la configuración e instalación, y luego a la codificación en el framework PHP más excitante disponible hoy. El libro se centra en la creación de una plantilla reutilizable que pueda servir como base para sus proyectos, incluyendo las siguientes características:
- Configuración e instalación
- Un modelo de usuario funcional
- Registro y logueo de Usuario
- Perfil de Usuario
- Recuperación de contraseña olvidada
- Separación del frontend y backend
- Clases auxiliares
- Control de acceso
- Control de contenido Gratuito/Pago
- RBAC con interface de usuario en el backend
- Selector de fechas (DatePicker) JUI
- Widgets Sociales de Facebook
- Implementación de Font-Awesome
- Inicio de sesión y Registro a través de Facebook con un solo click
Este libro es perfecto para programadores PHP principiantes que están listos para moverse hacia el desarrollo usando frameworks. El framework PHP Yii 2 es altamente escalable y extensible, y cargado con características. Lo introducimos a este framework maravilloso y explicamos en detalle todo lo que necesita saber para ponerse en marcha. ¡Le encantará Yii 2!
Tabla de contenido
-
Capítulo Uno: Introducción
- Introducción
- Características
- ¿Qué hace tan especial al framework Yii 2?
- Ventajas
- Desventajas
- Por qué elegí Yii 2
- Otras opciones
- Yii 2 llega
- Gii
- Enfoque base de datos primero
- MySql
- Flujo de trabajo mejorado
- Habilidades mínimas en PHP
- Herramientas que necesitará
- Errata
- Información de Contacto
- Resumen
-
Capítulo Dos: Instalación de la Plantilla Avanzada
- Configuración rápida de la de la Plantilla Avanzada de Yii 2
- Paso 1 - Crear el Directorio
- Paso 2 - Configuración de Apache
- Paso 3 - Host Local
- Paso 4 - Reiniciar Apache
- Paso 5 - Crear el Proyecto en el IDE
- Paso 6 - Encontrar la Ruta de la Línea de Comandos
- Paso 7 - Composer Self-Update
- Paso 8 - Instalar Yii 2
- Paso 9 - Revisar su directorio Yii 2
- Paso 10 - Ejecutar Php Init
- Paso 11 - Crear la Base de Datos
- Paso 12 - Establecer la conexión a la BD
- Paso 13 - Ejecutar la Migración
- Paso 14 - Crear el Repositorio en Git
- Paso 15 - Confirmar que la Aplicación está funcionando
- Solución de problemas
- Resumen
-
Capítulo Tres: Bienvenido al MVC
- Patrón MVC
- Index.php
- La Instancia de la Aplicación
- Ruteo
- Usando Gii
- Bootstrap
- Depurador
- Resumen
-
Capítulo Cuatro: Modificando el Modelo de Usuario
- Rol y Estado
- El modelo User
- Propiedades del Modelo
- Constantes
- Interfaz Identidad (Identity Interface)
- Comportamientos (Behaviors)
- Rules
- Métodos de Identidad (Identity Methods)
- Métodos Predefinidos
- Otros modelos que acceden a User
- Modelo SignupForm
- Resumen
-
Capítulo Cinco: Creando Nuevos Modelos con Gii
- Creando Tablas
- Tabla Rol
- Tabla Estado
- Tabla Tipo Usuario
- Tabla Genero
- Tabla Perfil
- Sincronice
- Configurando Gii
- Construyendo Modelos con Gii
- Crear el Modelo Rol
- Agregar Registros a la Tabla Rol
- Agregar la Relación a Rol
- Actualizar el Modelo User con Rol
- Crear el Modelo Estado
- Actualizar el Modelo User con getEstado
- Agregar registros a la Tabla Estado
- Crear Modelo Tipo Usuario
- Actualizar el Modelo User con TipoUsuario
- Agregar Registros a la Tabla tipo_usuario
- Crear el Modelo Genero
- Agregar Registros a la Tabla genero
- Crear Modelo Perfil
- El Modelo Perfil Completo
- Actualizar el Modelo User con Perfil
- Finalizar el Modelo User
- El Modelo User Completo
- Resumen
-
Capítulo Seis: Helpers (Auxiliares)
- Helpers de Valor
- Permisos Helpers
- Registros Helpers
- Resumen
-
Capítulo Siete: Controlador del Sitio
- Behaviors
- Acciones
- Acción Index
- Acción Login
- Modelo Login Form
- Acción Logout
- Acción Contacto
- Modelo Contact Form
- Captcha
- La Vista del Formulario de Contacto
- Acción About
- Acción Signup
- Modelo Signup Form
- ResetPasswordForm Model
- Controlador de Sitio del Backend
- Comenzando el Control de Acceso
- Método loginAdmin
- Resumen
-
Capítulo Ocho: Crud de Perfil
- CRUD
- Controlador de Perfil
- Búsqueda de Perfil
- _search
- _form
- Index
- View
- Create
- Update
- Modificando el Controlador y las Vistas de Perfil
- Modificando el Controlador de Perfil
- Acción Index
- Acción View
- Acción Create
- Acción Update
- Acción Delete
- Acción FindModel
- Modificando la Vistas de Perfil
- View.php
- Genero
- Parcial Formulario
- Create
- Update
- Layout del Sitio
- Link a Perfil
- DatePicker
- Resumen
-
Capítulo Nueve: Upgrade y Control de Acceso
- Controlador Upgrade
- Vista Index de Upgrade
- Requerir Upgrade A
- Control de Acceso
- Pasando una Variable desde el Controlador
- Resumen
-
Capítulo Diez: Widgets Sociales de la Homepage
- Implementando Widgets Sociales en la Homepage
- Index
- Widget de Facebook
- Configuración de la App de Facebook
- Configuración de Facebook
- Extensiones
- Helper HTML
- Widget Collapse
- Widget Modal
- Widget Alert
- Font-Awesome
- Asset Bundle
- Agregar Font-Awesome al Layout
- Resumen
-
Capítulo Once: Creación del Backend
- Main.php
- Modificando las Vistas del Backend
- backend/views/perfil/_form.php
- backend/views/perfil/view.php
- backend/views/user/view.php
- backend/views/user/_form
- Cambios más profundos al Backend
- backend/views/user/index.php
- backend/views/perfil/index.php
- backend/views/perfil/_search.php
- backend/views/user/_search.php
- User Search
- IU de Admin
- Behaviors del Controlador
- Match Callback
- Resumen
- Sobre el Autor
-
Capítulo Doce: Material Extra
- AutoResponder
- Navegación mediante Dropdown
- FAQ
- Test Controller
- Componentes
- Creando un Widget personalizado
- CDN
- Resumen
-
Capítulo Trece: Material Extra Urls Amigables y Slugs
- URLs Amigables
- Vhost de Apache
- Reinicie Apache
- Slugs
- Sluggable Behavior
- Columna Slug
- Elimine las Faqs viejas y cree nuevas
- Añadir Reglas al Url Manager
- Modificar la Acción View en FaqController
- Modificar las acciones Create y Update en el controlador del backend
- Cambiar la URL de la columna acción de la Gridview
- Resumen
-
Capítulo 14: Material Extra Login y Registro con Redes Sociales
- Yii2 - AuthClient
- Instalar yii2authclient via Composer
- Configuración
- Problema con Twitter
- Aplicaciones de Proveedores
- App de Google
- App de LinkedIn
- Faq Controller
- Frontend Faq view.php
- _rating-form.php
- FaqRatings Controller
- Faq Model
- Faq Index View
- Faq View
- Signup Form Model
- signup.php
- terms.php
- termsoverflow.css
- Frontend AppAsset.php
- Improving The Carousel
- Modify marketing_imageTable
- Modify MarketingImage Model
- MarketingImage Views
- Marketing Image view.php
- Update View
- MarketingImage Controller
- Create Action
- Update Action
- Delete Action
- Entire File
- CarouselSettings Model Rules
- CarouselWidget
- validateSize Method
- Entire CarouselWidget File
- carousel.php
- Summary
-
Chapter 17: Bonus Material Returning Calculated Values in Gridview
- Sorting A Calculated Value In Gridview
- Donate To Kartik
- Average Rating For Gridview
- Times Rated
- Summary
Leanpub incondicional, sin riesgo, 100% de felicidad garantizada
Durante los primeros 60 días de compra, puedes obtener un reembolso del 100% de cualquier compra Leanpub, en dos clics. Procesamos las restituciones manualmente, así que puede tomarse unos días en aparecer. Véase términos completos.
Que estés bien. Haz el bien.
Authors have earned$11,815,072writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
Actualizaciones gratis. Libre de DRM.
¡Si compras un libro Leanpub obtienes actualizaciones gratis siempre y cuando el autor actualice el libro! Varios autores usan Leanpub para publicar sus libros en progreso mientras los escriben. Todos los lectores obtienen actualizaciones gratis, independientemente de cuándo compraron el libro o cuánto pagaron (incluyendo si fue gratis).
La mayoría de los libros Leanpub se encuentran disponibles en PDF (para computadores) y EPUB (para teléfonos, tabletas, y Kindle). Los formatos que un libro incluye se muestran en la esquina superior derecha de esta página.
Finalmente, los libros Leanpub no tienen ninguna de las cosas sin sentido sobre protección de copia DRM, así que puedes leerlos fácilmente en cualquier dispositivo que se soporta.
Aprende más sobre los formatos de Leanpub y dónde puedes leerlos
Top Books
Stratospheric
Tom Hombergs, Björn Wilmsmann, and Philip RiecksFrom Zero to Production with Spring Boot and AWS. All you need to know to get a Spring Boot application into production with AWS. No previous AWS knowledge required.
Go to stratospheric.dev for a tour of the contents.
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
node-opcua by example
Etienne RossignonGet the best out of node-opcua through a set of documented examples by the author himself that will allow you to create stunning OPCUA Servers or Clients.
Advanced Web Application Architecture
Matthias NobackThe missing manual for making your web applications future-proof
Jetpack Compose internals
Jorge CastilloJetpack Compose is the future of Android UI. Master how it works internally and become a more efficient developer with it. You'll also find it valuable if you are not an Android dev. This book provides all the details to understand how the Compose compiler & runtime work, and how to create a client library using them.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Maîtriser Apache JMeter
Philippe Mouawad, Bruno Demion (Milamber), and Antonio Gomes RodriguesToute la puissance d'Apache JMeter expliquée par ses commiteurs et utilisateurs experts. De l'intégration continue en passant par le Cloud, vous découvrirez comment intégrer JMeter à vos processus "Agile" et Devops.
If you're looking for the newer english version of this book, go to Master JMeter : From load testing to DevOps
D3 Start to Finish
Peter CookD3 Start to Finish shows you how to build a custom, interactive and beautiful data visualisation using the JavaScript library D3.js (versions 6 & 7).
The book covers D3.js concepts such as selections, joins, requests, scale functions, events & transitions. You'll put these concepts into practice by building a custom, interactive data visualisation.
Top Bundles
- #1
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #2
Software Architecture
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #4
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #7
Retromat eBook Bundle for Agile Retrospectives
2 Books
If you facilitate retrospectives this bundle is for you: "Plans for Retrospectives" helps beginners learn the lay of the land with tried-and-true plans. Once you know your way around, "Run great agile retrospectives" contains all 135+ activities in Retromat for you to mix and match. - #8
Static Analysis and Automated Refactoring
2 Books
As PHP developers we are living in the "Age of Static Analysis". We can use a tool like PHPStan to learn about potential bugs before we ship our code to production, and we can enforce our team's programming standards using custom PHPStan rules. Recipes for Decoupling by Matthias Noback teaches you in great detail how to do this, while also... - #10
Practical FP in Scala + Functional event-driven architecture
2 Books
Practical FP in Scala (A hands-on approach) & Functional event-driven architecture, aka FEDA, (Powered by Scala 3), together as a bundle! The content of PFP in Scala is a requirement to understand FEDA so why not take advantage of this bundle!?