public function compose_to()
 {
     $accounts = $this->get_accounts();
     if (!count($accounts)) {
         _e('No accounts configured', 'support_hub');
     }
     foreach ($accounts as $account) {
         $bbpress_account = new shub_bbpress_account($account['shub_account_id']);
         echo '<div class="bbpress_compose_account_select">' . '<input type="checkbox" name="compose_bbpress_id[' . $account['shub_account_id'] . '][share]" value="1"> ' . ($bbpress_account->get_picture() ? '<img src="' . $bbpress_account->get_picture() . '">' : '') . '<span>' . htmlspecialchars($bbpress_account->get('bbpress_name')) . ' (status update)</span>' . '</div>';
         /*echo '<div class="bbpress_compose_account_select">' .
           '<input type="checkbox" name="compose_bbpress_id[' . $account['shub_account_id'] . '][blog]" value="1"> ' .
           ($bbpress_account->get_picture() ? '<img src="'.$bbpress_account->get_picture().'">' : '' ) .
           '<span>' . htmlspecialchars( $bbpress_account->get( 'bbpress_name' ) ) . ' (blog post)</span>' .
           '</div>';*/
         $forums = $bbpress_account->get('items');
         foreach ($forums as $item_id => $forum) {
             echo '<div class="bbpress_compose_account_select">' . '<input type="checkbox" name="compose_bbpress_id[' . $account['shub_account_id'] . '][' . $item_id . ']" value="1"> ' . ($bbpress_account->get_picture() ? '<img src="' . $bbpress_account->get_picture() . '">' : '') . '<span>' . htmlspecialchars($forum->get('item_name')) . ' (forum)</span>' . '</div>';
         }
     }
 }