whoami7 - Manager
:
/
home
/
qbizpnmr
/
www
/
wp-content
/
plugins
/
templately
/
includes
/
Utils
/
Upload File:
files >> /home/qbizpnmr/www/wp-content/plugins/templately/includes/Utils/Plan.php
<?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 ); } }
Copyright ©2021 || Defacer Indonesia