Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iricartb/yii-mvc-dropzone-component
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.
https://github.com/iricartb/yii-mvc-dropzone-component
component css database drag-and-drop dropzone inheritance javascript mvc php widget yii-framework
Last synced: about 1 month ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/iricartb/yii-mvc-dropzone-component
- Owner: iricartb
- Created: 2018-09-25T14:49:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-15T22:20:31.000Z (over 3 years ago)
- Last Synced: 2024-11-13T10:19:33.597Z (3 months ago)
- Topics: component, css, database, drag-and-drop, dropzone, inheritance, javascript, mvc, php, widget, yii-framework
- Language: PHP
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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;