This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| /** | |
| * MailSender | |
| * Per utilitzar PHPMailer de forma molt més senzilla i | |
| * utilitzant plantilles HTML. | |
| * | |
| * Dependencies: | |
| * - PHPMailer | |
| * | |
| * @version 0.24 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //////////////////////////////////////////////////////////////////////////////////////////////////// | |
| // WarriorSQL | |
| //////////////////////////////////////////////////////////////////////////////////////////////////// | |
| /** | |
| * WarriorSQL | |
| * ORM object to easy consults to WebSQL databases. | |
| * On this version can do easy SQL Querys: | |
| * - SELECT | |
| * - DELETE | |
| * - UPDATE | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | angular.module('service', []) | |
| .factory('Model', function(){ | |
| return function Model(item){ | |
| this.name = ""; | |
| this.surname = ""; | |
| this.email = ""; | |
| // more attrs | |