diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-01 22:33:14 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-01 22:33:14 +0100 |
commit | 0fa95bd5a7215da06f332c91f5857f563a1cce3d (patch) | |
tree | 3159604fe8f745b41059963396ced01526912a50 /system/libraries/Trackback.php | |
parent | 597ea27a0660bdf72f84d74566cc842e4da37efd (diff) |
[ci skip] DocBlocks for Pagination, Session, Trackback, Jquery libraries
Partially fixes issue #1295
Diffstat (limited to 'system/libraries/Trackback.php')
-rw-r--r-- | system/libraries/Trackback.php | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php index ac74f3632..c923a6220 100644 --- a/system/libraries/Trackback.php +++ b/system/libraries/Trackback.php @@ -39,12 +39,45 @@ defined('BASEPATH') OR exit('No direct script access allowed'); */ class CI_Trackback { - public $time_format = 'local'; + /** + * Character set + * + * @var string + */ public $charset = 'UTF-8'; - public $data = array('url' => '', 'title' => '', 'excerpt' => '', 'blog_name' => '', 'charset' => ''); + + /** + * Trackback data + * + * @var array + */ + public $data = array('url' => '', 'title' => '', 'excerpt' => '', 'blog_name' => '', 'charset' => ''); + + /** + * Convert ASCII flag + * + * Whether to convert high-ASCII and MS Word + * characters to HTML entities. + * + * @var bool + */ public $convert_ascii = TRUE; - public $response = ''; - public $error_msg = array(); + + /** + * Response + * + * @var string + */ + public $response = ''; + + /** + * Error messages list + * + * @var string[] + */ + public $error_msg = array(); + + // -------------------------------------------------------------------- /** * Constructor |