DashboardPromotions.php 810 B

1234567891011121314151617181920212223
  1. <?php
  2. return apply_filters( 'ninja-forms-dashboard-promotions', array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Ninja Mail
  6. |--------------------------------------------------------------------------
  7. |
  8. */
  9. 'ninja-mail' => array(
  10. 'id' => 'ninja-mail',
  11. 'content' => '<a href="#services"><span class="dashicons dashicons-email-alt"></span>' . __( 'Hosts are bad at sending emails. Improve the reliability of your submission emails! ', 'ninja-forms' ) . '<br /><span class="cta">' . __( 'Try our new Ninja Mail service!', 'ninja-forms' ) . '</span></a>',
  12. 'script' => "
  13. setTimeout(function(){ /* Wait for services to init. */
  14. Backbone.Radio.channel( 'dashboard' ).request( 'more:service:ninja-mail' );
  15. }, 500);
  16. "
  17. ),
  18. ));