Plugin Directory

Changeset 1807352


Ignore:
Timestamp:
01/22/2018 07:32:21 PM (8 years ago)
Author:
eewee
Message:

1.12

Location:
eewee-sellsy/tags/1.12
Files:
9 added
8 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • eewee-sellsy/tags/1.12/index.php

    r1800776 r1807352  
    9595
    9696// CONTROLLERS
    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' );
     97require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/CookieController.php' );
     98require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AjaxController.php' );
     99require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/InstallController.php' );
     100require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ToolsController.php' );
     101require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/ShortcodeController.php' );
     102require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/AdminController.php' );
     103require_once( EEWEE_SELLSY_PLUGIN_DIR . '/controllers/SellsyCustomFieldsController.php' );
    104104
    105105use fr\eewee\eewee_sellsy\controllers;
  • eewee-sellsy/tags/1.12/view/contactForm.php

    r1792772 r1807352  
    2020    $r = $t_contact_form->updateStatus($_GET);
    2121
    22     $tools = new controllers\ToolsControllers();
     22    $tools = new controllers\ToolsController();
    2323    $display = $tools->verifMaj( $r );
    2424    echo $display;
  • eewee-sellsy/tags/1.12/view/contactFormEdit.php

    r1792772 r1807352  
    5454
    5555        // DISPLAY
    56         $tools = new controllers\ToolsControllers();
     56        $tools = new controllers\ToolsController();
    5757        $display = $tools->verifMaj($r);
    5858        echo $display;
     
    9898       
    9999        $errors_render = implode('<br>', $mess);
    100         echo controllers\ToolsControllers::error($errors_render);
     100        echo controllers\ToolsController::error($errors_render);
    101101    }
    102102
  • eewee-sellsy/tags/1.12/view/settingEdit.php

    r1792772 r1807352  
    1616    $r = $t_setting->update( $_POST );
    1717
    18     $tools = new controllers\ToolsControllers();
     18    $tools = new controllers\ToolsController();
    1919    $display = $tools->verifMaj( $r );
    2020    echo $display;
  • eewee-sellsy/tags/1.12/view/ticketForm.php

    r1792772 r1807352  
    2020    $r = $t_ticket_form->updateStatus($_GET);
    2121
    22     $tools = new controllers\ToolsControllers();
     22    $tools = new controllers\ToolsController();
    2323    $display = $tools->verifMaj( $r );
    2424    echo $display;
  • eewee-sellsy/tags/1.12/view/ticketFormAdd.php

    r1792772 r1807352  
    2727        $r = $t_ticket_form->add($_POST);
    2828
    29         $tools = new controllers\ToolsControllers();
     29        $tools = new controllers\ToolsController();
    3030        $display = $tools->verifMaj($r);
    3131        echo $display;
     
    4545        }
    4646        $mess .= '</strong>'.implode(', ', $errors).'.';
    47         echo controllers\ToolsControllers::error($mess);
     47        echo controllers\ToolsController::error($mess);
    4848    }
    4949}//if
  • eewee-sellsy/tags/1.12/view/ticketFormEdit.php

    r1792772 r1807352  
    2727        $r = $t_ticket_form->update($_POST);
    2828
    29         $tools = new controllers\ToolsControllers();
     29        $tools = new controllers\ToolsController();
    3030        $display = $tools->verifMaj($r);
    3131        echo $display;
     
    4040        }
    4141        $mess .= '</strong>'.implode(', ', $errors).'.';
    42         echo controllers\ToolsControllers::error($mess);
     42        echo controllers\ToolsController::error($mess);
    4343    }
    4444
Note: See TracChangeset for help on using the changeset viewer.