PATH:
home
/
sparklp6
/
public_html
/
website_356c8563
/
wp-content
/
plugins
/
templately
/
includes
/
Utils
<?php namespace Templately\Utils; class Plan extends Base { const ALL = 1; const STARTER = 2; const PRO = 3; /** * Get the plan ID. * * @since 2.0.0 * @param string $plan * * @return int */ public static function get( $plan = 'all' ) { $plan = strtoupper( $plan ); return $plan === 'STARTER' ? self::STARTER : ( $plan === 'PRO' ? self::PRO : self::ALL ); } }
[-] Enqueue.php
[edit]
[-] Http.php
[edit]
[-] Plan.php
[edit]
[-] .htaccess
[edit]
[-] Views.php
[edit]
[-] Options.php
[edit]
[-] Helper.php
[edit]
[-] Database.php
[edit]
[-] Base.php
[edit]
[-] Installer.php
[edit]
[+]
..