Ferreteria/v0.6/clade/IO/O/View/Web/Cell

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | IO‎ | O‎ | View‎ | Web
Jump to navigation Jump to search
The item documented here has been removed and is no longer in use.
clade: IO\O\View\Web\Cell
Clade Family
Cell Cell (none)
Clade Aliases
Alias Clade
Subpages

Code

Entire contents of file, as removed on 2026-01-26:

<?php namespace  Woozalia\Ferret\IO\O\View\Web;
/**
 * HISTORY:
    2024-09-17 created
    2024-10-20 moved from [WF]IO\O\Screen\Render\Web -> IO\O\Render\Web
*/

use Woozalia\Ferret\IO\O\Data\Element\Text\caCell as BaseClass;
use Woozalia\Ferret\IO\O\Markup\HTML\csTags as TagFx;

class cCell extends BaseClass {

    // ++ OUTPUT ++ //

    public function Render() : string {
        $sVal = $this->SText();
        $arAt = $this->AAttrs();
        $htAt = TagFx::ArrayToAttrs($arAt);
        $htCell = "<$htCellTag$htAt>$sVal</$htCellTag>";
        return $htCell;
    }
}