Changeset 1798229
- Timestamp:
- 01/06/2018 05:10:16 PM (8 years ago)
- Location:
- eewee-sellsy/tags/1.12
- Files:
-
- 12 added
- 8 deleted
- 3 edited
-
changelog (modified) (1 diff)
-
composer.json (added)
-
controllers/AdminController.php (deleted)
-
controllers/AdminControllers.php (added)
-
controllers/AjaxController.php (deleted)
-
controllers/AjaxControllers.php (added)
-
controllers/CookieController.php (deleted)
-
controllers/CookieControllers.php (added)
-
controllers/InstallController.php (deleted)
-
controllers/InstallControllers.php (added)
-
controllers/SellsyCustomFieldsController.php (deleted)
-
controllers/SellsyCustomFieldsControllers.php (added)
-
controllers/ShortcodeController.php (deleted)
-
controllers/ShortcodeControllers.php (added)
-
controllers/ToolsController.php (deleted)
-
controllers/ToolsControllers.php (added)
-
helpers/FormHelper.php (deleted)
-
helpers/FormHelpers.php (added)
-
index.php (modified) (2 diffs)
-
phpunit.xml (added)
-
readme.txt (modified) (1 diff)
-
tests (added)
-
tests/ToolsControllersTest.php (added)
Legend:
- Unmodified
- Added
- Removed
-
eewee-sellsy/tags/1.12/changelog
r1792772 r1798229 1 1 = 1.12 = 2 * Add "assigned to" and "probability" on opportunity2 * Add "assigned to", "probability" on opportunity and PHPUNIT 3 3 4 4 = 1.11 = -
eewee-sellsy/tags/1.12/index.php
r1796637 r1798229 85 85 86 86 // HELPERS 87 require_once ( EEWEE_SELLSY_PLUGIN_DIR . '/helpers/FormHelper .php' );87 require_once ( EEWEE_SELLSY_PLUGIN_DIR . '/helpers/FormHelpers.php' ); 88 88 require_once ( EEWEE_SELLSY_PLUGIN_DIR . '/helpers/dbUpdate.php' ); 89 89 … … 95 95 96 96 // CONTROLLERS 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' );97 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/CookieControllers.php' ); 98 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AjaxControllers.php' ); 99 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/InstallControllers.php' ); 100 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ToolsControllers.php' ); 101 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ShortcodeControllers.php' ); 102 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AdminControllers.php' ); 103 require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/SellsyCustomFieldsControllers.php' ); 104 104 105 105 use fr\eewee\eewee_sellsy\controllers; -
eewee-sellsy/tags/1.12/readme.txt
r1796637 r1798229 55 55 56 56 = 1.12 = 57 * Add "assigned to" and "probability" on opportunity57 * Add "assigned to", "probability" on opportunity and PHPUNIT 58 58 59 59 = 1.11 =
Note: See TracChangeset
for help on using the changeset viewer.