Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

set_slideshow()

Parameters

ColumnTypeDefaultDescription
$ref
$resource_ref null
$homepage_show 1
$featured_collections_show 1
$login_show 0

Location

include/slideshow_functions.php lines 13 to 69

Definition

 
function set_slideshow($ref$resource_ref null$homepage_show 1$featured_collections_show 1$login_show 0)
    {
    if(
        (!
is_null($ref) && !is_numeric($ref))
        || (!(
is_null($resource_ref) || trim($resource_ref) == '') && !is_numeric($resource_ref))
        || !
is_numeric($homepage_show)
        || !
is_numeric($featured_collections_show)
        || !
is_numeric($login_show))
        {
        return 
false;
        }

    
$ref = ((int) $ref $ref null);
    
$resource_ref = ((int) $resource_ref $resource_ref null);

    
$query "
        INSERT INTO slideshow (ref, resource_ref, homepage_show, featured_collections_show, login_show)
             VALUES (?, ?, ?, ?, ?)
                 ON DUPLICATE KEY
             UPDATE resource_ref = ?,
                    homepage_show = ?,
                    featured_collections_show = ?,
                    login_show = ?"
;
    
$query_params = array(
        
"i",$ref,
        
"i",$resource_ref,
        
"i",$homepage_show,
        
"i",$featured_collections_show,
        
"i",$login_show,
        
"i",$resource_ref,
        
"i",$homepage_show,
        
"i",$featured_collections_show,
        
"i",$login_show,
    );

    
ps_query($query,$query_params);

    
// Clear cache
    
clear_query_cache("slideshow");

    
$new_ref sql_insert_id();
    if(
is_null($ref) && $new_ref != 0)
        {
        
log_activity("Added new slideshow image"LOG_CODE_CREATEDnull'slideshow''ref'$new_ref);

        return 
$new_ref;
        }
    elseif(!
is_null($ref) && $new_ref != && $ref == $new_ref)
        {
        
log_activity("Updated slideshow image"LOG_CODE_EDITEDnull'slideshow''ref'$ref);

        return 
$new_ref;
        }


    return 
false;
    }

This article was last updated 19th March 2024 09:05 Europe/London time based on the source file dated 20th February 2024 17:10 Europe/London time.