├── .gitignore ├── README.md ├── apps ├── config │ ├── constants.php │ ├── modules.php │ └── routes.php ├── library │ └── Util.php ├── models │ ├── entities │ │ ├── Galeria.php │ │ ├── GaleriaFoto.php │ │ └── User.php │ ├── repositories │ │ ├── Exceptions │ │ │ ├── InvalidRepositoryException.php │ │ │ └── ModelException.php │ │ ├── Repositories.php │ │ └── Repository │ │ │ ├── Galeria.php │ │ │ └── User.php │ └── services │ │ ├── Exceptions │ │ └── InvalidServiceException.php │ │ ├── Service │ │ ├── Galeria.php │ │ └── User.php │ │ └── Services.php ├── modules │ ├── api │ │ ├── Module.php │ │ └── controllers │ │ │ └── CrudController.php │ └── frontend │ │ ├── Module.php │ │ ├── controllers │ │ ├── GaleriaController.php │ │ ├── IndexController.php │ │ └── UserController.php │ │ └── views │ │ ├── galeria │ │ └── index.phtml │ │ ├── index.phtml │ │ └── user │ │ ├── delete.phtml │ │ ├── get.phtml │ │ ├── post.phtml │ │ └── put.phtml └── views │ └── index.phtml ├── index.html ├── public ├── .htaccess ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── main.css ├── files │ └── empty ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.php └── js │ ├── angular.min.js │ ├── main.js │ ├── user.js │ └── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.1.min.js │ └── modernizr-2.6.2-respond-1.1.0.min.js ├── rest_galeria.sql ├── rest_galeria_foto.sql └── rest_user.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/README.md -------------------------------------------------------------------------------- /apps/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/config/constants.php -------------------------------------------------------------------------------- /apps/config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/config/modules.php -------------------------------------------------------------------------------- /apps/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/config/routes.php -------------------------------------------------------------------------------- /apps/library/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/library/Util.php -------------------------------------------------------------------------------- /apps/models/entities/Galeria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/entities/Galeria.php -------------------------------------------------------------------------------- /apps/models/entities/GaleriaFoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/entities/GaleriaFoto.php -------------------------------------------------------------------------------- /apps/models/entities/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/entities/User.php -------------------------------------------------------------------------------- /apps/models/repositories/Exceptions/InvalidRepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/repositories/Exceptions/InvalidRepositoryException.php -------------------------------------------------------------------------------- /apps/models/repositories/Exceptions/ModelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/repositories/Exceptions/ModelException.php -------------------------------------------------------------------------------- /apps/models/repositories/Repositories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/repositories/Repositories.php -------------------------------------------------------------------------------- /apps/models/repositories/Repository/Galeria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/repositories/Repository/Galeria.php -------------------------------------------------------------------------------- /apps/models/repositories/Repository/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/repositories/Repository/User.php -------------------------------------------------------------------------------- /apps/models/services/Exceptions/InvalidServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/services/Exceptions/InvalidServiceException.php -------------------------------------------------------------------------------- /apps/models/services/Service/Galeria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/services/Service/Galeria.php -------------------------------------------------------------------------------- /apps/models/services/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/services/Service/User.php -------------------------------------------------------------------------------- /apps/models/services/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/models/services/Services.php -------------------------------------------------------------------------------- /apps/modules/api/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/api/Module.php -------------------------------------------------------------------------------- /apps/modules/api/controllers/CrudController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/api/controllers/CrudController.php -------------------------------------------------------------------------------- /apps/modules/frontend/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/Module.php -------------------------------------------------------------------------------- /apps/modules/frontend/controllers/GaleriaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/controllers/GaleriaController.php -------------------------------------------------------------------------------- /apps/modules/frontend/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/controllers/IndexController.php -------------------------------------------------------------------------------- /apps/modules/frontend/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/controllers/UserController.php -------------------------------------------------------------------------------- /apps/modules/frontend/views/galeria/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/views/galeria/index.phtml -------------------------------------------------------------------------------- /apps/modules/frontend/views/index.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/modules/frontend/views/user/delete.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/views/user/delete.phtml -------------------------------------------------------------------------------- /apps/modules/frontend/views/user/get.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/views/user/get.phtml -------------------------------------------------------------------------------- /apps/modules/frontend/views/user/post.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/views/user/post.phtml -------------------------------------------------------------------------------- /apps/modules/frontend/views/user/put.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/modules/frontend/views/user/put.phtml -------------------------------------------------------------------------------- /apps/views/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/apps/views/index.phtml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/index.html -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/css/bootstrap-theme.css -------------------------------------------------------------------------------- /public/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/css/main.css -------------------------------------------------------------------------------- /public/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/angular.min.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/user.js -------------------------------------------------------------------------------- /public/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /public/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/vendor/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/vendor/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /public/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/public/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js -------------------------------------------------------------------------------- /rest_galeria.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/rest_galeria.sql -------------------------------------------------------------------------------- /rest_galeria_foto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/rest_galeria_foto.sql -------------------------------------------------------------------------------- /rest_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nancorrea/phalcon-restful/HEAD/rest_user.sql --------------------------------------------------------------------------------