first commit

This commit is contained in:
renjianbo
2026-01-07 11:40:41 +08:00
parent 2b5d784e31
commit 8f2ed2c108
6466 changed files with 1431506 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_App extends Zeed_Object
{
public $appid;
public $xtype;
public $title;
public $alias;
public $apikey;
public $apisecret;
public $trustable;
public $internal;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,28 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: Code.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_Code extends Zeed_Object
{
public $code;
public $type;
public $userid;
public $email;
public $note;
public $ctime;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,23 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_Code_Email extends Com_Entity_Code
{
public $type = 'email';
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,23 @@
<?php
/**
* 邮件绑定代码
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_Code_Email_Bind extends Com_Entity_Code
{
public $type = 'email.bind';
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,23 @@
<?php
/**
* 邮件绑定代码
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_Code_Email_ClearMibaoka extends Com_Entity_Code
{
public $type = 'email.clearmibaoka';
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,23 @@
<?php
/**
* 通过邮件重置密码代码
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_Code_Email_ForgotPassword extends Com_Entity_Code
{
public $type = 'email.forgotpassowrd';
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,26 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since 2010-9-14
* @version SVN: $Id$
*/
class Com_Entity_Code_Email_ResetQA extends Com_Entity_Code
{
public $type = 'email.resetqa';
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,46 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since May 26, 2010
* @version SVN: $Id$
*/
class Com_Entity_Mailqueue extends Zeed_Object
{
public $id;
public $to;
public $cc;
public $bcc;
public $subject;
public $bodytext; // 纯文本邮件内容
public $bodyhtml; // HTML格式邮件内容
public $from;
public $reply;
public $failcount;
public $attachment;
/**
* 队列状态, 参见Zeed_Task
*
* @see Zeed_Task
* @var integer
*/
public $status;
public $charset;
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,51 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5474 2010-06-29 07:21:25Z nroe $
*/
class Com_Entity_User extends Zeed_Object_Ext
{
public $uuid;
public $userid;
public $username;
public $password;
public $salt;
public $encrypt;
public $domainid;
public $email;
public $nickname;
public $gender;
public $ctime;
public $status;
/**
* 定义 EXT 扩展属性字段
*
* @todo 暂时不使用
*/
private $_properties = array(
);
public function __construct()
{
parent::__construct();
$this->setAllowedProperties($this->_properties);
$this->setExtTable('userext');
$this->setExtProcessHandle('Com_Model_User', 'saveExt');
}
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,24 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category Com
* @package Com_Entity
* @subpackage Com_Entity_Mapping
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5474 2010-06-29 07:21:25Z nroe $
*/
class Com_Entity_Mapping_Email2userid extends Zeed_Object
{
public $userid;
public $email;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,27 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category Com
* @package Com_Entity
* @subpackage Com_Entity_Mapping
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5474 2010-06-29 07:21:25Z nroe $
*/
class Com_Entity_Mapping_User extends Zeed_Object
{
public $userid;
public $username;
public $domainid;
public $uuid;
public $email;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,25 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category Com
* @package Com_Entity
* @subpackage Com_Entity_Mapping
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5474 2010-06-29 07:21:25Z nroe $
*/
class Com_Entity_Mapping_Username2userid extends Zeed_Object
{
public $userid;
public $username;
public $domainid;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,30 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since 2010-6-28
* @version SVN: $Id$
*/
class Com_Entity_Permission extends Zeed_Object
{
public $permissionid;
public $permissionname;
public $description;
public $datatype;
public $validate;
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,31 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since Sep 8, 2010
* @version SVN: $Id: PermissionLink.php 6699 2010-09-08 10:30:40Z xsharp $
*/
class Com_Entity_PermissionLink extends Zeed_Object
{
public $id;
public $schemeid;
public $type;
public $permissionid;
public $parameter;
public $note;
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,28 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since Sep 8, 2010
* @version SVN: $Id: PermissionScheme.php 6698 2010-09-08 10:22:00Z xsharp $
*/
class Com_Entity_PermissionScheme extends Zeed_Object
{
public $schemeid;
public $name;
public $description;
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,27 @@
<?php
/**
* Zeed Platform Project
* Based on Zeed Framework & Zend Framework.
*
* BTS - Billing Transaction Service
* CAS - Central Authentication Service
*
* LICENSE
* http://www.zeed.com.cn/license/
*
* @category Zeed
* @package Zeed_ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
* @author Zeed Team (http://blog.zeed.com.cn)
* @since May 25, 2010
* @version SVN: $Id$
*/
class Com_Entity_Task extends Zeed_Object
{
public $id;
public $status;
}
// End ^ Native EOL ^ encoding

View File

@@ -0,0 +1,54 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author xSharp ( GTalk: xSharp@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 9385 2011-01-18 10:05:05Z woody $
*/
class Com_Entity_User extends Zeed_Object_Ext
{
public $uuid;
public $userid;
public $username;
public $password;
public $ipassword;
public $freeze;
public $salt;
public $encrypt;
public $domainid;
public $email;
public $nickname;
public $gender;
public $ctime;
public $ban_etime;
public $status;
/**
* 定义 EXT 扩展属性字段
*
* @todo 暂时不使用
*/
private $_properties = array(
);
public function __construct()
{
parent::__construct();
$this->setAllowedProperties($this->_properties);
$this->setExtTable('userext');
$this->setExtProcessHandle('Com_Model_User', 'saveExt');
}
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,29 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_User_Detail extends Zeed_Object
{
public $userid;
public $birthday;
public $phone;
public $address;
public $zipcode;
public $verifiedEmail;
public $source;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,29 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_User_Security extends Zeed_Object
{
public $userid;
public $realname;
public $idcard;
public $qa;
public $pwdcardid;
public $pwdcard;
public $pwdcardimg;
}
// End ^ LF ^ encoding

View File

@@ -0,0 +1,28 @@
<?php
/**
* iNewS Project
*
* LICENSE
*
* http://www.inews.com.cn/license/inews
*
* @category iNewS
* @package ChangeMe
* @subpackage ChangeMe
* @copyright Copyright (c) 2008 Zeed Technologies PRC Inc. (http://www.inews.com.cn)
* @author Nroe ( GTalk: gnroed@gmail.com )
* @since Apr 8, 2010
* @version SVN: $Id: User.php 5268 2010-05-28 08:13:43Z xsharp $
*/
class Com_Entity_User_Security_Pwdcard extends Zeed_Object
{
public $userid;
public $appid;
public $pwdcardid;
public $pwdcard;
public $pwdcardimg;
public $btime;
}
// End ^ LF ^ encoding