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

metadata_field_view_access()

Description

Check if user has view access to metadata field

Parameters

ColumnTypeDefaultDescription
$field integer Field ref

Return

boolean

Location

include/resource_functions.php lines 8601 to 8606

Definition

 
function metadata_field_view_access($field)
    {
    return 
        (
PHP_SAPI == 'cli' && !defined("RS_TEST_MODE"))
        || ((
checkperm("f*") || checkperm("f" $field)) && !checkperm("f-" $field));
    }

This article was last updated 19th March 2024 05:05 Europe/London time based on the source file dated 11th March 2024 14:25 Europe/London time.