source: trunk/Packages/TinyMCE/TinyMCE.php

Last change on this file was 838, checked in by chronos, 8 years ago
  • Added: TinyMCE package.
File size: 388 bytes
Line 
1<?php
2
3class PackageTinyMCE
4{
5 var $Name;
6 var $Version;
7 var $ReleaseDate;
8 var $License;
9 var $Creator;
10 var $Homepage;
11
12 function __construct()
13 {
14 $this->Name = 'TinyMCE';
15 $this->Version = '4.4.3';
16 $this->ReleaseDate = strtotime('2016-09-01');
17 $this->Creator = 'ephox';
18 $this->License = 'GNU/LGPL 2';
19 $this->Homepage = 'https://www.tinymce.com/';
20 }
21}
Note: See TracBrowser for help on using the repository browser.