/**
  * Status for Tags.
  *
  * @package s2Member\Lock_Icons
  * @since 1.5
  *
  * @param str $value Existing value for this data column.
  * @param str $column_name Column ID/Name. We need to look at this to fill the `(s2)` column.
  * @param int|str $id Expecting a numeric Tag ID to be passed through by the Filter.
  * @return str If `(s2)` column, return status. Else, existing ``$value``.
  */
 public static function _lock_icons_return_value_tags($value = FALSE, $column_name = FALSE, $id = FALSE)
 {
     return $column_name === "ws_plugin__s2member_pro_lock_icons" ? c_ws_plugin__s2member_pro_lock_icons_in::_return_lock_icons_description(c_ws_plugin__s2member_ptags_sp::check_specific_ptag_level_access($id, false)) : $value;
 }
 function is_tag_permitted_by_s2member($tag_id_slug_or_name = FALSE)
 {
     if ($tag_id_slug_or_name && c_ws_plugin__s2member_ptags_sp::check_specific_ptag_level_access($tag_id_slug_or_name, true)) {
         return false;
     }
     return true;
 }