本文整理汇总了PHP中learnpath::set_modified_on方法的典型用法代码示例。如果您正苦于以下问题:PHP learnpath::set_modified_on方法的具体用法?PHP learnpath::set_modified_on怎么用?PHP learnpath::set_modified_on使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类learnpath
的用法示例。
在下文中一共展示了learnpath::set_modified_on方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
break;
case 'edit_item':
if (!$is_allowed_to_edit) {
api_not_allowed(true);
}
if ($debug > 0) {
error_log('New LP - edit item action triggered', 0);
}
if (!$lp_found) {
error_log('New LP - No learnpath given for edit item', 0);
require 'lp_list.php';
} else {
Session::write('refresh', 1);
if (isset($_POST['submit_button']) && !empty($post_title)) {
// Updating the lp.modified_on
$learnPath->set_modified_on();
// TODO: mp3 edit
$audio = array();
if (isset($_FILES['mp3'])) {
$audio = $_FILES['mp3'];
}
$description = isset($_POST['description']) ? $_POST['description'] : '';
$prerequisites = isset($_POST['prerequisites']) ? $_POST['prerequisites'] : '';
$maxTimeAllowed = isset($_POST['maxTimeAllowed']) ? $_POST['maxTimeAllowed'] : '';
$url = isset($_POST['url']) ? $_POST['url'] : '';
$learnPath->edit_item($_REQUEST['id'], $_POST['parent'], $_POST['previous'], $post_title, $description, $prerequisites, $audio, $maxTimeAllowed, $url);
if (isset($_POST['content_lp'])) {
$learnPath->edit_document($_course);
}
$is_success = true;
$learnPath->updateCurrentLpFromSession();