blob: 5da3a7e55ca764fcbb60df4afb58ddeb4c282c67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* Elgg twitter edit page
*
* @package ElggTwitter
*/
?>
<p>
<?php echo elgg_echo("twitter:username"); ?>
<input type="text" name="params[twitter_username]" value="<?php echo htmlentities($vars['entity']->twitter_username); ?>" />
<br /><?php echo elgg_echo("twitter:num"); ?>
<input type="text" name="params[twitter_num]" value="<?php echo htmlentities($vars['entity']->twitter_num); ?>" />
</p>
|