blob: 9ebb35557f219476678ea01b57b940d27cb59044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace PHPExcelFixer\StyleFixer\Util;
class XmlNamespace
{
const SPREADSHEETML_NS_URL = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main';
const RELATIONSHIPS_NS_URL = 'http://schemas.openxmlformats.org/package/2006/relationships';
// drawing関係
const SPREADSHEETDRAWING_NS_URL = 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheet';
const DRAWINGML_NS_URL = 'http://schemas.openxmlformats.org/drawingml/2006/main';
const DRAWINGML_CHART_NS_URL = 'http://schemas.openxmlformats.org/drawingml/2006/chart';
}
|