blob: 7e8907d384e2fa8c3e9e6900b43301ff99309f47 [file] [log] [blame]
<?php
/**
* File containing the ezcDocumentXhtmlTableCellElementFilter class
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Document
* @version //autogen//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @access private
*/
/**
* Filter for XHtml table cells.
*
* Tables, where the rows are nor structured into a tbody and thead are
* restructured into those by this filter.
*
* @package Document
* @version //autogen//
* @access private
*/
class ezcDocumentXhtmlTableCellElementFilter extends ezcDocumentXhtmlElementBaseFilter
{
/**
* Filter a single element
*
* @param DOMElement $element
* @return void
*/
public function filterElement( DOMElement $element )
{
if ( $element->hasAttribute( 'rowspan' ) &&
( $element->getAttribute( 'rowspan' ) > 1 ) )
{
$attributes = $element->getProperty( 'attributes' );
$attributes['morerows'] = $element->getAttribute( 'rowspan' ) - 1;
$element->setProperty( 'attributes', $attributes );
}
// @todo: Handle colspan, too - even it is quite complex to express in
// docbook.
}
/**
* Check if filter handles the current element
*
* Returns a boolean value, indicating weather this filter can handle
* the current element.
*
* @param DOMElement $element
* @return void
*/
public function handles( DOMElement $element )
{
return ( $element->tagName === 'td' );
}
}
?>