mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 03:07:31 -05:00 
			
		
		
		
	* BaseController cleanup * Working on invoice designs * Working on invoice designs * working on invoice designs * working on invoice designs * invoice designs * Working on Invoice Designs * Fixes for user settings object * Working on invoice designs * Fixes for encoded user settings * Working on contact localized invoice pdfs * working on invoice designs * Fix for invoice update 500 error
		
			
				
	
	
		
			51 lines
		
	
	
		
			985 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			985 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\DataMapper;
 | 
						|
 | 
						|
use App\Models\Client;
 | 
						|
use App\Models\User;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class DefaultSettings
 | 
						|
 * @package App\DataMapper
 | 
						|
 */
 | 
						|
class DefaultSettings extends BaseSettings
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var int
 | 
						|
     */
 | 
						|
    public static $per_page = 25;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \stdClass
 | 
						|
     *
 | 
						|
     * //todo user specific settings / preferences.
 | 
						|
     */
 | 
						|
    public static function userSettings() : \stdClass
 | 
						|
    {
 | 
						|
        return (object)[
 | 
						|
        //    class_basename(User::class) => self::userSettingsObject(),
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \stdClass
 | 
						|
     */
 | 
						|
    private static function userSettingsObject() : \stdClass
 | 
						|
    {
 | 
						|
        return (object)[
 | 
						|
        //    'per_page' => self::$per_page,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |