AtomParser::is_declared_content_ns( $new_mapping )

In this article

Source

function is_declared_content_ns($new_mapping) {
    foreach($this->content_ns_contexts as $context) {
        foreach($context as $mapping) {
            if($new_mapping == $mapping) {
                return true;
            }
        }
    }
    return false;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.