PageRenderTime 47ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/osCommerce/OM/Core/Site/Admin/Application/newsletters/pages/new.php

http://github.com/osCommerce/oscommerce
PHP | 69 lines | 44 code | 13 blank | 12 comment | 1 complexity | 568020b181eed8745bfd593b247c8be6 MD5 | raw file
  1. <?php
  2. /*
  3. $Id: $
  4. osCommerce, Open Source E-Commerce Solutions
  5. http://www.oscommerce.com
  6. Copyright (c) 2007 osCommerce
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License v2 (1991)
  9. as published by the Free Software Foundation.
  10. */
  11. $osC_DirectoryListing = new osC_DirectoryListing('includes/modules/newsletters');
  12. $osC_DirectoryListing->setIncludeDirectories(false);
  13. $modules_array = array();
  14. foreach ( $osC_DirectoryListing->getFiles() as $file ) {
  15. $module = substr($file['name'], 0, strrpos($file['name'], '.'));
  16. $osC_Language->loadIniFile('modules/newsletters/' . $file['name']);
  17. include('includes/modules/newsletters/' . $file['name']);
  18. $newsletter_module_class = 'osC_Newsletter_' . $module;
  19. $osC_NewsletterModule = new $newsletter_module_class();
  20. $modules_array[] = array('id' => $module,
  21. 'text' => $osC_NewsletterModule->getTitle());
  22. }
  23. ?>
  24. <h1><?php echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule()), $osC_Template->getPageTitle()); ?></h1>
  25. <?php
  26. if ( $osC_MessageStack->size($osC_Template->getModule()) > 0 ) {
  27. echo $osC_MessageStack->get($osC_Template->getModule());
  28. }
  29. ?>
  30. <div class="infoBoxHeading"><?php echo osc_icon('new.png') . ' ' . $osC_Language->get('action_heading_new_newsletter'); ?></div>
  31. <div class="infoBoxContent">
  32. <form name="newsletter" action="<?php echo osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page'] . '&action=save'); ?>" method="post">
  33. <p><?php echo $osC_Language->get('introduction_new_newsletter'); ?></p>
  34. <table border="0" cellspacing="0" cellpadding="2">
  35. <tr>
  36. <td width="40%"><?php echo '<b>' . $osC_Language->get('field_module') . '</b>'; ?></td>
  37. <td width="60%"><?php echo osc_draw_pull_down_menu('module', $modules_array); ?></td>
  38. </tr>
  39. <tr>
  40. <td colspan="2">&nbsp;</td>
  41. </tr>
  42. <tr>
  43. <td width="40%"><?php echo '<b>' . $osC_Language->get('field_title') . '</b>'; ?></td>
  44. <td width="60%"><?php echo osc_draw_input_field('title'); ?></td>
  45. </tr>
  46. <tr>
  47. <td width="40%" valign="top"><?php echo '<b>' . $osC_Language->get('field_content') . '</b>'; ?></td>
  48. <td width="60%"><?php echo osc_draw_textarea_field('content', null, 60, 20, 'style="width: 100%;"'); ?></td>
  49. </tr>
  50. </table>
  51. <p align="center"><?php echo osc_draw_hidden_field('subaction', 'confirm') . '<input type="submit" value="' . $osC_Language->get('button_save') . '" class="operationButton" /> <input type="button" value="' . $osC_Language->get('button_cancel') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&page=' . $_GET['page']) . '\';" class="operationButton" />'; ?></p>
  52. </form>
  53. </div>