Search results

  1. S

    Extension - expose unauthenticated endpoint

    Is there a way to register a route for an extension, which doesn't require authentication? Eg: Yii::app()->urlManager->addRules(array( array('ext_webhook_index', 'pattern' => 'extensions/webhook/'), )); and then the resulting url, backend/index.php/webhook/index to not require...
  2. S

    Extension cron - sending email

    I'm interested in sending an email on a daily basis. We're discussing the crons on this topic here but what I'm interested is how to send an email within that cron and if there are any templates I can use. This addresses administrator users only ( /backend ) . Thanks
  3. S

    Extension database update

    How do you run the required database update, when installing/enabling a new extension. And upon uninstalling it, how do you rollback or drop those changes. Not looking for SQL code :P I need to create 2 tables and drop them if the extensions gets uninstalled.
  4. S

    Extension Cron Job

    Is it possible to add a cron job to an extension and triggered automatically when that extension is installed/setup on an app? I could not find any related information neither in the documentation nor the extension example provided by you guys.
Back
Top