Badblog

welcome to our blog

We are Learncodz.


Posts

Comments

The Team

Blog Codz Author

Connect With Us

Join To Connect With Us

Portfolio

    Posted by: Anonymous Posted date: 20:33 / comment : 0

    Final product image
    What You'll Be Creating
    If you're asking, "What's Yii?" check out my earlier tutorial: Introduction to the Yii Framework, which reviews the benefits of Yii and includes an overview of what's new in Yii 2.0, released October 12, 2014.
    In Programming with Yii2: Getting Started, we set up Yii2 locally, built a Hello World application, set up a remote server and used GitHub to deploy our code. In part two, we learned about Yii's implementation of its Model View Controller architecture and how to build web pages and forms that collect and validate data. In this tutorial, we'll use Yii's database and active record capabilities to automate code generation for a basic web application.
    For these examples, we'll continue to imagine we're building a framework for posting simple status updates, e.g. our own mini-Twitter.
    First, we need to create a database in our development environment. I do this through MAMP's PHPMyAdmin web user interface. Navigate to PHPMyAdmin, e.g. http://localhost:8888/MAMP/index.php?page=phpmyadmin, choose theDatabases tab and create a database called hello:
    MAMP PHPMyAdmin Create Database
    You can also use the MySQL command line interface.
    Now, we'll provide database credentials to Yii's database configuration file. Open/hello/config/db.php and provide your MySQL database credentials. Mine look like this:
    Now, we'll create our first database migration. A migration provides a programmatic way to create and update database schemas. It's especially helpful if you're running on multiple servers or in different environments. It eliminates the difficulty of importing SQL scripts.
    For our coding examples, you can use the Git repository from the last tutorial to follow along, or you can download the completed repository here.
    Our first migration will create the Status table. Open Terminal and enter the following:
    It should look like this, when you're done:
    Yii Migration Create
    When you open \hello\migrations, you'll see a file named similar to m141201_013120_create_status_table.php. It should look like this when opened:
    This is the default migration code that Yii provides. Next, we'll update it to provide the fields we need.
    Our Status table will store message text and specify whether a post is private or public. Each row will also have an id, create and update time fields.
    Update your migration code to ours:
    Notice how we've added definitions for the fields we need such as message,permissionscreated_at, and updated_at.
    To tell Yii to create the table, we need to run the migration. It's easy. From Terminal again, we run ./yii migrate/up:
    If you browse the table using PHPMyAdmin, you should see something like this:
    PHPMyAdmin View the Status Table
    Now that we've created the database table, we can begin to use Gii, Yii's powerful scaffolding generator, to automate all of the model view controller code.
    Gii is Yii's scaffolding code generator. It uses its knowledge of your database schema to generate well-written, default model view controller code for your application. Gii can turn a database schema into a basic working web application in minutes. It's incredibly powerful. Let me show you how it works.
    With Gii, we start by building a model based on each database table we've created. For our example, we'll use the Status table.
    To begin using Gii, navigate to your web application and add /gii, e.g. http://localhost:8888/hello/web/gii. You'll see something like this:
    Yiis Gii Scaffolding Generator
    Click on Model Generator, and enter status in the Table Name field:
    Gii Model Generator
    When you click Preview, it will show you which files it will build. Since we already have a Status.php model file from the last tutorial, click Overwrite. Then, click Generate.
    Gii Model Generator Preview
    The results will look like this:
    Gii Model Code Generated
    Open the /hello/models/Status.php file and you'll see the basic validation rules and form attributes which Yii has built for us:
    Now, it's time to use Gii to build the controller and views for the Status table. Return to the Gii home page and click CRUD Generator, e.g. http://localhost:8888/hello/web/gii/crud:
    For Model Class, enter app\models\Status (these entries are case sensitive). ForSearch Model Class, enter app\models\StatusSearch. For Controller Class, enterapp\controllers\StatusController. It should look like this:
    Yiis Gii CRUD Generator
    Click Preview. You'll see the following—be sure to click Overwrite again since we have older files from the last tutorial which need to be updated:
    Yiis Gii CRUD Generator Preview
    When you click Generate, you'll see all of the controller and view files generated:
    Yiis Gii CRUD Generated Code
    Navigate your browser to http://localhost:8888/hello/web/status, and you'll see the generated CRUD index page. Since there aren't any rows in the database yet, it'll appear empty.
    Yiis Gii CRUD Generated Index Grid
    Now, click on Create Status and you'll see the default Create Status Form which Gii created:
    Yii Default Form for Status Table
    It's pretty amazing how quickly Gii creates working code for us. Next, we'll customize the scaffolding code to make this work for us.
    Let's clean up the form. In /hello/views/Status/_form.php, remove the created and updated fields:
    Replace the permissions field with the drop-down list code we created in part two of this series:
    We need to put the getPermissions function back in the model as well. Edit/hello/models/Status.php. Put back the constant definitions and permissions functions:
    Your new Status form should look like this:
    Revised Status Create Form
    We need to adjust the controller a bit to make the form save properly.
    In /hello/controllers/StatusController.php, replace the actionCreate method with this code:
    When the form is posted, we manually set the created_at and updated_at fields, then we save the data in the database. 
    When you save your first status update, you'll see the following view page:
    Default Status View
    Let's readjust the navbar so that it doesn't drop down for Status but jumps directly to the Status index page. Edit /hello/views/layouts/main.php and replace theNav::widget code with this:
    When you return to the Status index view, you can see the Yii2 Grid filled with data:
    Default Grid View with Data
    The code which generates this page is in /hello/views/status/index.php:
    If you try out the column sorting and view, update and delete icons, you'll see that Gii has built out all the functionality for these features as well.
    So in just a few minutes, we created a schema for our database, and generated a model and all of the web application code needed for a basic application. I hope you've found Yii's code generation capabilities as impressive as I have

    icon allbkg

    Tagged with:

    Next
    Newer Post
    Previous
    Older Post

    No comments:

Comments

The Visitors says
Download Free Software Latest Version