Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
powerpoint_doc.inc
1 <?php
18 require_once SQ_CORE_PACKAGE_PATH.'/files/file/file.inc';
19 
20 
32 class Powerpoint_Doc extends File
33 {
34 
35 
45  public $allowed_extensions = Array('ppt', 'pot', 'pps', 'pptx', 'potx', 'ppsx', 'pptm', 'potm', 'ppsm');
46 
47 
54  function __construct($assetid=0)
55  {
56  parent::__construct($assetid);
57 
58  }//end constructor
59 
60 
61 }//end class
62 ?>