~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to api/src/Image/Composite/HelioviewerMovieFrame.php

  • Committer: Keith Hughitt
  • Date: 2011-05-26 19:28:41 UTC
  • mfrom: (402.1.667 hv)
  • Revision ID: keith.hughitt@nasa.gov-20110526192841-5xmuft9jsm52pzih
Helioviewer.org 2.2.0 Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
 
3
/**
 
4
 * Image_Composite_HelioviewerMovieFrame class definition
 
5
 * 
 
6
 * PHP version 5
 
7
 *
 
8
 * @category Image
 
9
 * @package  Helioviewer
 
10
 * @author   Keith Hughitt <keith.hughitt@nasa.gov>
 
11
 * @license  http://www.mozilla.org/MPL/MPL-1.1.html Mozilla Public License 1.1
 
12
 * @link     http://launchpad.net/helioviewer.org
 
13
 */
 
14
require_once 'src/Image/Composite/HelioviewerCompositeImage.php';
 
15
 
 
16
/**
 
17
 * Image_Composite_HelioviewerMovieFrame class definition
 
18
 *
 
19
 * PHP version 5
 
20
 *
 
21
 * @category Image
 
22
 * @package  Helioviewer
 
23
 * @author   Keith Hughitt <keith.hughitt@nasa.gov>
 
24
 * @license  http://www.mozilla.org/MPL/MPL-1.1.html Mozilla Public License 1.1
 
25
 * @link     http://launchpad.net/helioviewer.org
 
26
 */
 
27
class Image_Composite_HelioviewerMovieFrame extends Image_Composite_HelioviewerCompositeImage
 
28
{
 
29
    /**
 
30
     * Helioviewer movie frame
 
31
     */
 
32
    public function __construct($filepath, $layers, $obsDate, $roi, $options)
 
33
    {
 
34
        parent::__construct($layers, $obsDate, $roi, $options);
 
35
        $this->build($filepath);
 
36
    }
 
37
}
 
 
b'\\ No newline at end of file'