/**
  * Get all the bounce templates from the system
  *
  * - Callback for createList()
  *
  * @param int $start
  * @param int $items_per_page
  * @param string $sort
  */
 public function list_getBounceTemplates($start, $items_per_page, $sort)
 {
     return warningTemplates($start, $items_per_page, $sort, 'bnctpl');
 }
 /**
  * Callback for createList() to get all the templates of a type from the system
  *
  * @param int $start
  * @param int $items_per_page
  * @param string $sort
  * @param string $template_type type of template to load
  */
 public function list_getWarningTemplates($start, $items_per_page, $sort, $template_type = 'warntpl')
 {
     return warningTemplates($start, $items_per_page, $sort, $template_type);
 }