This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$account = user_load(UID); | |
module_load_include('inc', 'user', 'user.pages'); | |
$form_state = array(); | |
$form_state['build_info']['args'] = array($account); | |
form_load_include($form_state, 'inc', 'user', 'user.pages'); | |
print render(drupal_build_form('user_profile_form', $form_state)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ie10 and up classes */ | |
/*@cc_on | |
(function(){ | |
console.log('Conditonals Rock!'); | |
}); | |
document.documentElement.classList += ' ie' + document.documentMode}); | |
@*/ |