Changeset 1807352
- Timestamp:
- 01/22/2018 07:32:21 PM (8 years ago)
- Location:
- eewee-sellsy/tags/1.12
- Files:
-
- 9 added
- 8 deleted
- 7 edited
-
controllers/AdminController.php (added)
-
controllers/AdminControllers.php (deleted)
-
controllers/AjaxController.php (added)
-
controllers/AjaxControllers.php (deleted)
-
controllers/CookieController.php (added)
-
controllers/CookieControllers.php (deleted)
-
controllers/InstallController.php (added)
-
controllers/InstallControllers.php (deleted)
-
controllers/SellsyCustomFieldsController.php (added)
-
controllers/SellsyCustomFieldsControllers.php (deleted)
-
controllers/ShortcodeController.php (added)
-
controllers/ShortcodeControllers.php (deleted)
-
controllers/ToolsController.php (added)
-
controllers/ToolsControllers.php (deleted)
-
index.php (modified) (1 diff)
-
tests/SellsyCustomFieldsControllerTest.txt (added)
-
tests/ToolsControllerTest.php (added)
-
tests/ToolsControllersTest.php (deleted)
-
view/contactForm.php (modified) (1 diff)
-
view/contactFormEdit.php (modified) (2 diffs)
-
view/settingEdit.php (modified) (1 diff)
-
view/ticketForm.php (modified) (1 diff)
-
view/ticketFormAdd.php (modified) (2 diffs)
-
view/ticketFormEdit.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eewee-sellsy/tags/1.12/index.php
r1800776 r1807352 95 95 96 96 // CONTROLLERS 97 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/CookieController s.php' );98 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AjaxController s.php' );99 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/InstallController s.php' );100 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ToolsController s.php' );101 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ShortcodeController s.php' );102 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AdminController s.php' );103 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/SellsyCustomFieldsController s.php' );97 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/CookieController.php' ); 98 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AjaxController.php' ); 99 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/InstallController.php' ); 100 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ToolsController.php' ); 101 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ShortcodeController.php' ); 102 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AdminController.php' ); 103 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/SellsyCustomFieldsController.php' ); 104 104 105 105 use fr\eewee\eewee_sellsy\controllers; -
eewee-sellsy/tags/1.12/view/contactForm.php
r1792772 r1807352 20 20 $r = $t_contact_form->updateStatus($_GET); 21 21 22 $tools = new controllers\ToolsController s();22 $tools = new controllers\ToolsController(); 23 23 $display = $tools->verifMaj( $r ); 24 24 echo $display; -
eewee-sellsy/tags/1.12/view/contactFormEdit.php
r1792772 r1807352 54 54 55 55 // DISPLAY 56 $tools = new controllers\ToolsController s();56 $tools = new controllers\ToolsController(); 57 57 $display = $tools->verifMaj($r); 58 58 echo $display; … … 98 98 99 99 $errors_render = implode('<br>', $mess); 100 echo controllers\ToolsController s::error($errors_render);100 echo controllers\ToolsController::error($errors_render); 101 101 } 102 102 -
eewee-sellsy/tags/1.12/view/settingEdit.php
r1792772 r1807352 16 16 $r = $t_setting->update( $_POST ); 17 17 18 $tools = new controllers\ToolsController s();18 $tools = new controllers\ToolsController(); 19 19 $display = $tools->verifMaj( $r ); 20 20 echo $display; -
eewee-sellsy/tags/1.12/view/ticketForm.php
r1792772 r1807352 20 20 $r = $t_ticket_form->updateStatus($_GET); 21 21 22 $tools = new controllers\ToolsController s();22 $tools = new controllers\ToolsController(); 23 23 $display = $tools->verifMaj( $r ); 24 24 echo $display; -
eewee-sellsy/tags/1.12/view/ticketFormAdd.php
r1792772 r1807352 27 27 $r = $t_ticket_form->add($_POST); 28 28 29 $tools = new controllers\ToolsController s();29 $tools = new controllers\ToolsController(); 30 30 $display = $tools->verifMaj($r); 31 31 echo $display; … … 45 45 } 46 46 $mess .= '</strong>'.implode(', ', $errors).'.'; 47 echo controllers\ToolsController s::error($mess);47 echo controllers\ToolsController::error($mess); 48 48 } 49 49 }//if -
eewee-sellsy/tags/1.12/view/ticketFormEdit.php
r1792772 r1807352 27 27 $r = $t_ticket_form->update($_POST); 28 28 29 $tools = new controllers\ToolsController s();29 $tools = new controllers\ToolsController(); 30 30 $display = $tools->verifMaj($r); 31 31 echo $display; … … 40 40 } 41 41 $mess .= '</strong>'.implode(', ', $errors).'.'; 42 echo controllers\ToolsController s::error($mess);42 echo controllers\ToolsController::error($mess); 43 43 } 44 44
Note: See TracChangeset
for help on using the changeset viewer.