本文整理匯總了PHP中completion_info::delete_all_state方法的典型用法代碼示例。如果您正苦於以下問題:PHP completion_info::delete_all_state方法的具體用法?PHP completion_info::delete_all_state怎麽用?PHP completion_info::delete_all_state使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類completion_info
的用法示例。
在下文中一共展示了completion_info::delete_all_state方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: test_delete_all_state
public function test_delete_all_state()
{
global $DB;
$this->mock_setup();
$course = (object) array('id' => 13);
$cm = (object) array('id' => 42, 'course' => 13);
$c = new completion_info($course);
// Check it works ok without data in session.
/** @var $DB PHPUnit_Framework_MockObject_MockObject */
$DB->expects($this->at(0))->method('delete_records')->with('course_modules_completion', array('coursemoduleid' => 42))->will($this->returnValue(true));
$c->delete_all_state($cm);
}
示例2: test_delete_all_state
public function test_delete_all_state()
{
global $DB, $SESSION;
$this->mock_setup();
$course = (object) array('id' => 13);
$cm = (object) array('id' => 42, 'course' => 13);
$c = new completion_info($course);
// Check it works ok without data in session.
/** @var $DB PHPUnit_Framework_MockObject_MockObject */
$DB->expects($this->at(0))->method('delete_records')->with('course_modules_completion', array('coursemoduleid' => 42))->will($this->returnValue(true));
$c->delete_all_state($cm);
// Build up a session to check it deletes the right bits from it
// (and not other bits).
$SESSION->completioncache = array();
$SESSION->completioncache[13] = array();
$SESSION->completioncache[13][42] = 'foo';
$SESSION->completioncache[13][43] = 'foo';
$SESSION->completioncache[14] = array();
$SESSION->completioncache[14][42] = 'foo';
$DB->expects($this->at(0))->method('delete_records')->with('course_modules_completion', array('coursemoduleid' => 42))->will($this->returnValue(true));
$c->delete_all_state($cm);
$this->assertEquals(array(13 => array(43 => 'foo'), 14 => array(42 => 'foo')), $SESSION->completioncache);
}
示例3: array
function test_delete_all_state()
{
global $DB, $SESSION;
$course = (object) array('id' => 13);
$cm = (object) array('id' => 42, 'course' => 13);
$c = new completion_info($course);
// Check it works ok without data in session
$DB->expectAt(0, 'delete_records', array('course_modules_completion', array('coursemoduleid' => 42)));
$c->delete_all_state($cm);
// Build up a session to check it deletes the right bits from it
// (and not other bits)
$SESSION->completioncache = array();
$SESSION->completioncache[13] = array();
$SESSION->completioncache[13][42] = 'foo';
$SESSION->completioncache[13][43] = 'foo';
$SESSION->completioncache[14] = array();
$SESSION->completioncache[14][42] = 'foo';
$DB->expectAt(1, 'delete_records', array('course_modules_completion', array('coursemoduleid' => 42)));
$c->delete_all_state($cm);
$this->assertEqual(array(13 => array(43 => 'foo'), 14 => array(42 => 'foo')), $SESSION->completioncache);
$DB->tally();
}