Skip to content

Commit

Permalink
Script: Hide LPs filtered by name - refs BT#17716
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Sep 9, 2020
1 parent 2ae6b45 commit 20b7ded
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions tests/scripts/hide_lp_by_name.php
@@ -0,0 +1,51 @@
<?php
/* For licensing terms, see /license.txt */

/**
* Batch to hide all LPs with the $nameToSearch name.
*/

if (PHP_SAPI != 'cli') {
die('This script can only be executed from the command line');
}

exit;

require_once __DIR__.'/../../main/inc/global.inc.php';

/*
* Arguments for script
*/
$nameToSearch = 'My LP to hide';
$userId = 1;

/*
* Processing
*/
$tblLP = Database::get_course_table(TABLE_LP_MAIN);
$name = Database::escape_string($nameToSearch);

$sql = "SELECT iid, c_id FROM $tblLP WHERE name = '$nameToSearch'";

$result = Database::query($sql);

while ($lp = Database::fetch_assoc($result)) {
$updated = api_item_property_update(
api_get_course_info_by_id($lp['c_id']),
TOOL_LEARNPATH,
$lp['iid'],
'invisible',
$userId
);

echo '['.time().'] ';

if (!$updated) {
echo "LP not updated ({$lp['iid']})";
}

echo "LP ({$lp['iid']}) updated";
echo PHP_EOL;
}

echo 'Done'.PHP_EOL;

0 comments on commit 20b7ded

Please sign in to comment.