Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- /**
- * Display page
- *
- * @see account.php
- * @global $config, $smarty, $dbconn, $auth, $lang, $multi_lang, $REFERENCES
- * @return void
- */
- function AccountPage($par, $err = '') {
- global $config;
- global $smarty;
- global $dbconn;
- global $user;
- global $lang;
- global $multi_lang;
- global $REFERENCES;
- $file_name = GetSeoURL( 'account.php' );
- IndexHomePage( 'account', 'homepage' );
- if ($err) {
- GetErrors( $err );
- }
- $settings = GetSiteSettings( array( 'use_agent_user_type', 'phone_format', 'view_user_info' ) );
- $phone_format = ($config['settings']['use_phone_format'] ? $config['settings']['phone_format'] : '');
- $smarty->assign( 'file_name', $file_name );
- $smarty->assign( 'use_agent_user_type', $settings['use_agent_user_type'] );
- $smarty->assign( 'phone_format', $phone_format );
- $smarty->assign( 'view_user_info', $settings['view_user_info'] );
- switch ($par) {
- ............................................................
- ......................
- ..........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement