blob: d82112ded60f474a1c6f43b9c5786ba41ad1047c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* TLoginStatus class.
* Detects the user's authentication state and toggles the state of a link to log in to or log out of a Web site.
*
* @author Jason Ragsdale <jrags@jasrags.net>
* @version $Id: TLoginStatus.php 1398 2006-09-08 19:31:03Z xue $
* @package System.Web.UI.WebControls
* @since 3.1
*/
class TLoginStatus extends TCompositeControl
{
}
?>
|