コード例 #1
0
ファイル: ICategory.php プロジェクト: NguyenThanhDung/Finance
function show_edit_category_form($id)
{
    $category = CCategoryManager::GetCategoryById($id);
    if ($category) {
        $editCategoryForm = new EditCategoryForm($category);
        $editCategoryForm->Show();
        return 1;
    } else {
        return 0;
    }
}
コード例 #2
0
ファイル: CRecord.php プロジェクト: NguyenThanhDung/Finance
 function GetCategory()
 {
     return CCategoryManager::GetCategoryById($this->category_id);
 }