no message

This commit is contained in:
hellcat 2025-06-10 19:55:56 +08:00
parent 88259e2970
commit e7af623a75
2 changed files with 15 additions and 0 deletions

View File

@ -304,6 +304,7 @@ class SakaiController
$s = "optionSet todo_show_type 1";
$s = "openRe";
// $s = "back";
$s = "todoShowType 3";
// movetoId和like列表

View File

@ -445,7 +445,21 @@ class Book extends Base {
}
return $this->_rag(false, $sValue, $sRank);
}
public function todoShowType($aParam)
{
$iType = $aParam["aArg"][1];
$aRagOption = $this->aRagOption;
$aRagOption["todo_show_type"] = $iType;
$sRagOption = json_encode($aRagOption, 1);
$oParentRag = $this->_getParentRag();
$oParentRag->option = $sRagOption;
$oParentRag->save();
return $this->openRe();
}
public function totip($aParam)