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 | |
| $out = ''; | |
| // create a new form field (also field wrapper) | |
| $form = $modules->get("InputfieldForm"); | |
| $form->action = "./"; | |
| $form->method = "post"; | |
| $form->attr("id+name",'subscribe-form'); |
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 | |
| /** | |
| * ProcessWire Module Template | |
| * | |
| * Demonstrates the Module interface and how to add hooks. | |
| * | |
| * ProcessWire 2.x | |
| * Copyright (C) 2010 by Ryan Cramer | |
| * Licensed under GNU/GPL v2, see LICENSE.TXT |
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 | |
| /** | |
| * ProcessWire Module Template | |
| * | |
| * Demonstrates the Module interface and how to add hooks. | |
| * | |
| * ProcessWire 2.x | |
| * Copyright (C) 2010 by Ryan Cramer | |
| * Licensed under GNU/GPL v2, see LICENSE.TXT |
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
| <!doctype html> | |
| <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> | |
| <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> | |
| <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> | |
| <!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]--> | |
| <head> | |
| <!-- Basic Page Needs | |
| ================================================== --> | |
| <meta charset="utf-8" /> |
NewerOlder