Skip to content

Ivan Ricart Borges - Yii component that allows to interact with the user through a widget to drag and drop elements in a stipulated area, makes use of the MVC pattern and interacts with the database by making internal calls about the models that, through inheritance, implement a certain interface.

Notifications You must be signed in to change notification settings

iricartb/yii-mvc-dropzone-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii - MVC Dropzone Widget

Yii component that allows to interact with the user through a widget to drag and drop elements in a stipulated area, makes use of the MVC pattern and interacts with the database by making internal calls about the models that, through inheritance, implement a certain interface.

Database

DROP TABLE IF EXISTS db_site.header_slider_images;

CREATE DATABASE IF NOT EXISTS db_site CHARACTER SET utf8 COLLATE utf8_spanish_ci;

CREATE TABLE IF NOT EXISTS db_site.header_slider_images (
id INT NOT NULL AUTO_INCREMENT,
image VARCHAR(45) NOT NULL,
position INT NOT NULL,

PRIMARY KEY (id),
INDEX (position)
) ENGINE=innodb;

About

Ivan Ricart Borges - Yii component that allows to interact with the user through a widget to drag and drop elements in a stipulated area, makes use of the MVC pattern and interacts with the database by making internal calls about the models that, through inheritance, implement a certain interface.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published