~oh-dev/openhealth/phit-tools

« back to all changes in this revision

Viewing changes to ihris-suite/lib/i2ce/modules/Forms/modules/Binary_Files/I2CE_FormField_IMAGE.php

  • Committer: litlfred at ibiblio
  • Date: 2009-10-23 12:59:28 UTC
  • Revision ID: litlfred@ibiblio.org-20091023125928-u5lkafz0urm9t8eq
updated ihris-suite to 4.0.1-prerelease -- not debugged

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * © Copyright 2007, 2008 IntraHealth International, Inc.
4
 
 * 
5
 
 * This File is part of iHRIS
6
 
 * 
7
 
 * iHRIS is free software; you can redistribute it and/or modify
8
 
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation; either version 3 of the License, or
10
 
 * (at your option) any later version.
11
 
 * 
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 * 
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
 *//**
20
 
    * @package I2CE
21
 
    * @author Carl Leitner <litlfred@ibiblio.org>
22
 
    * @copyright Copyright &copy; 2007, 2008 IntraHealth International, Inc. 
23
 
    * @since v2.0.0
24
 
    * @version v2.0.0
25
 
    */
26
 
/**
27
 
 * Class for defining all the database fields used by a {@link I2CE_Form} object.
28
 
 * @package I2CE
29
 
 * @access public
30
 
 */
31
 
class I2CE_FormField_IMAGE extends I2CE_FormField_BINARY_FILE {
32
 
    /**
33
 
     * Checks to see if a mime type is a valid image mime type
34
 
     * @param string $mime_type
35
 
     * @returns true if valid.  false otherwise
36
 
     */
37
 
    public function isValidMimeType($mime_type) {
38
 
        return preg_match('/^image/',$mime_type);
39
 
    }
40
 
 
41
 
 
42
 
 
43
 
}
44
 
 
45
 
# Local Variables:
46
 
# mode: php
47
 
# c-default-style: "bsd"
48
 
# indent-tabs-mode: nil
49
 
# c-basic-offset: 4
50
 
# End: