Inpsyde\MultilingualPress\API\WPDBContentRelations::get_cache_key PHP Method

get_cache_key() private method

Return the cache key for the given arguments.
private get_cache_key ( integer $source_site_id, integer $source_content_id, string $type ) : string
$source_site_id integer Blog ID.
$source_content_id integer Content ID.
$type string Content type.
return string
    private function get_cache_key($source_site_id, $source_content_id, $type)
    {
        return "mlp_{$type}_relations_{$source_site_id}_{$source_content_id}";
    }