Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
15 / 15
base
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
2 / 2
7
100.00% covered (success)
100.00%
15 / 15
 check_upload_size
100.00% covered (success)
100.00%
1 / 1
6
100.00% covered (success)
100.00%
13 / 13
 set_upload
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
2 / 2
<?php
/**
 *
 * This file is part of the phpBB Forum Software package.
 *
 * @copyright (c) phpBB Limited <https://www.phpbb.com>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 * For full copyright and license information, please see
 * the docs/CREDITS.txt file.
 *
 */
namespace phpbb\files\types;
abstract class base implements type_interface
{
    /** @var \phpbb\language\language */
    protected $language;
    /** @var \bantu\IniGetWrapper\IniGetWrapper */
    protected $php_ini;
    /** @var \phpbb\files\upload */
    protected $upload;
    /**
     * Check if upload exceeds maximum file size
     *
     * @param \phpbb\files\filespec $file Filespec object
     *
     * @return \phpbb\files\filespec Returns same filespec instance
     */
    public function check_upload_size($file)
    {
        // PHP Upload filesize exceeded
        if ($file->get('filename') == 'none')
        {
            $max_filesize = $this->php_ini->getString('upload_max_filesize');
            $unit = 'MB';
            if (!empty($max_filesize))
            {
                $unit = strtolower(substr($max_filesize, -1, 1));
                $max_filesize = (int) $max_filesize;
                $unit = ($unit == 'k') ? 'KB' : (($unit == 'g') ? 'GB' : 'MB');
            }
            $file->error[] = (empty($max_filesize)) ? $this->language->lang($this->upload->error_prefix . 'PHP_SIZE_NA') : $this->language->lang($this->upload->error_prefix . 'PHP_SIZE_OVERRUN', $max_filesize, $this->language->lang($unit));
        }
        return $file;
    }
    /**
     * {@inheritdoc}
     */
    public function set_upload(\phpbb\files\upload $upload)
    {
        $this->upload = $upload;
        return $this;
    }
}