This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/includes/kohana/modules/oauth/views/oauth/twitter/tweet.php
2011-01-14 01:49:56 +11:00

16 lines
332 B
PHP

<?php echo Form::open() ?>
<dl>
<dt><?php echo Form::label('tweet', 'Update Twitter Status?') ?></dt>
<dd><?php echo Form::textarea('tweet', $tweet) ?></dd>
</dl>
<?php echo Form::submit(NULL, 'Send') ?>
<?php echo Form::close() ?>
<?php if ($response): ?>
<p>Response from Twitter:</p>
<?php echo $response ?>
<?php endif ?>