| 1 | <?php |
||
| 9 | class CellFormulaFormatter |
||
| 10 | { |
||
| 11 | /** Definition of XML nodes names used to parse data */ |
||
| 12 | const XML_NODE_FORMULA = 'f'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Returns the cell formula associated to the given XML node. |
||
| 16 | * |
||
| 17 | * @param \DOMNode $node |
||
| 18 | * @return string The formula associated with the cell |
||
| 19 | */ |
||
| 20 | public function extractNodeFormula($node) |
||
| 28 | } |