This implements a very simple style rewriter, it works but i still have to check...
[shindig.git] / php / src / gadgets / GadgetSpec.php
blob6c9de526c9c91a8ce7f209f27e52d31f9bfda0fb
1 <?php
3 /**
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
22 class GadgetSpec {
23 /**
24 * MD5 checksum of the xml's content
26 * @var string
28 public $checksum;
30 // Basic and extended ModulePrefs attributes
31 public $title;
32 public $author;
33 public $authorEmail;
34 public $description;
35 public $directoryTitle;
36 public $screenshot;
37 public $thumbnail;
38 public $titleUrl;
39 public $authorAffiliation;
40 public $authorLocation;
41 public $authorPhoto;
42 public $authorAboutme;
43 public $authorQuote;
44 public $authorLink;
45 public $showStats;
46 public $showInDirectory;
47 public $string;
48 public $width;
49 public $height;
50 public $category;
51 public $category2;
52 public $singleton;
53 public $renderInline;
54 public $scaling;
55 public $scrolling;
57 public $preloads;
58 public $locales;
59 public $icon;
60 public $optionalFeatures;
61 public $requiredFeatures;
63 public $links;
64 public $userPrefs;
65 public $rewrite = null;
66 public $oauth = null;