NAME
WWW::CheckPad::CheckList - A class to control checklist of check*pad.
SYNOPSIS
See the WWW::CheckPad
DESCRIPTION
WWW::CheckPad::CheckListはcheck*padのチェックリストをコントロールするクラス です。このクラスを通じて、チェックリストの追加・更新・削除を行うことが可能 です。現在、対応していない主要な機能として下記があります。
1.公開・非公開機能 2.公開されたチェックリストの取得
Class Method
retrieve_all
my @checklists = WWW::CheckPad::CheckList->retrieve_all();
retrieve_all
は現在ログインしているユーザの全チェックリストを返します。
retrieve
my $checklist = WWW::CheckPad::CheckList->retrieve($checklist_id);
retrieve
は$checklist_idで指定されたチェックリストを返します。ただし、 この$checklist_idが現在ログインしているユーザのチェックリストを指している 必要があります。現在ログインしているユーザのチェックリスト内で見つからない 時はundef
を返します。
insert
my $checklist = WWW::CheckPad::CheckList->insert({title => 'title of list'});
新しいチェックリストを作成し、保存します。
Instance Method
update
$checklist->update();
チェックリストの情報を更新します。これにより更新される情報はタイトルだけ なので、下記のようなコーディングが良く使われます。
$checklist->title('update title'); ## update the title
$checklist->update();
delete
$checklist->delete();
チェックリストを削除します。
add_checkitem
my $checkitem = $checklist->add_checkitem('new todo item');
新しいTodo項目をこのチェックリストに追加します。
checkitems
my @checkitems = $checklist->checkitems();
このチェックリストに属する、すべてのTodo項目を返します。
SEE ALSO
WWW::CheckPad
WWW::CheckPad::CheckItem
AUTHOR
Ken Takeshige, <ken.takeshige@gmail.com>
http://d.hatena.ne.jp/ya_ken/
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Ken Takeshige
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 11:
Non-ASCII character seen before =encoding in 'WWW::CheckPad::CheckListはcheck*padのチェックリストをコントロールするクラス'. Assuming UTF-8