PHP Classes

File: classes/css/parser/combinator/css-parser-combinator.php

Recommend this page to a friend!
  Classes of Gonzalo Chumillas   PHP Query   classes/css/parser/combinator/css-parser-combinator.php   Download  
File: classes/css/parser/combinator/css-parser-combinator.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Query
Parse and access XML documents as arrays
Author: By
Last change: update
Date: 9 years ago
Size: 1,112 bytes
 

Contents

Class file image Download
<?php
/**
 * This file contains the CssParserCombinator class.
 *
 * PHP Version 5.3
 *
 * @category Css
 * @package CssParser
 * @author Gonzalo Chumillas <gonzalo@soloproyectos.com>
 * @license https://raw2.github.com/soloproyectos/php.common-libs/master/LICENSE BSD 2-Clause License
 * @link https://github.com/soloproyectos/php.common-libs
 */
namespace com\soloproyectos\common\css\parser\combinator;
use \
DOMElement;

/**
 * Class CssParserCombinator.
 *
 * This class represents a filter in a CSS expression.
 *
 * @category Css
 * @package CssParser
 * @author Gonzalo Chumillas <gonzalo@soloproyectos.com>
 * @license https://raw2.github.com/soloproyectos/php.common-libs/master/LICENSE BSD 2-Clause License
 * @link https://github.com/soloproyectos/php.common-libs
 */
abstract class CssParserCombinator
{
   
/**
     * Gets the nodes that combines with a given node and a tag name.
     *
     * @param DOMElement $node DOMElement object
     * @param string $tagname Tag name
     *
     * @return boolean
     */
   
abstract public function filter($node, $tagname);
}