/* The actions list for the Related posts pro plugin */

/* 1. Functional actions */

    // No possible functional actions yet

/* 2. Layout Actions */

    Parameters:
        $id (int) - the id of the related post instance
        $content_array (array of Objects) - contains all the items (posts,pages,..) for output
        $options (array) - contains all the options for the current Related posts pro instance

    // Before the container output
    do_action('rpp_before_output', $id, $content_array, $options);

    // Before the title output
    do_action('rpp_before_title', $id, $rpp_related_posts, $options);

    // After the title output
    do_action('rpp_after_title', $id, $rpp_related_posts, $options);

    // Before sort/filter buttons
    do_action('rpp_before_buttons', $id, $rpp_related_posts, $options);

    // After sort/filter buttons
    do_action('rpp_after_buttons', $id, $rpp_related_posts, $options);

    // Before the search box
    do_action('rpp_before_searchbox', $id, $rpp_related_posts, $options);

    // After the search box
    do_action('rpp_after_searchbox', $id, $rpp_related_posts, $options);

    // Before item wrapper container
    do_action('rpp_before_item_wrapper', $id, $rpp_related_posts, $options);

    // After item wrapper container
    do_action('rpp_after_item_wrapper', $id, $rpp_related_posts, $options);

    // Before each item's (post's) outer container
    do_action('rpp_before_item_outer', $id, $rpp_related_posts, $options);

    // After each item's (post's) outer container
    do_action('rpp_after_item_outer', $id, $rpp_related_posts, $options);

    // Before each item's (post's) inner container
    do_action('rpp_before_item_inner', $id, $rpp_related_posts, $options);

    // After each item's (post's) inner container
    do_action('rpp_after_item_inner', $id, $rpp_related_posts, $options);