本文整理汇总了PHP中Reminder::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Reminder::add方法的具体用法?PHP Reminder::add怎么用?PHP Reminder::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Reminder
的用法示例。
在下文中一共展示了Reminder::add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Reminder
You should have received a copy of the GNU General Public License
along with GLPI. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
*/
include '../inc/includes.php';
if (!isset($_GET["id"])) {
$_GET["id"] = "";
}
$remind = new Reminder();
Session::checkLoginUser();
if (isset($_POST["add"])) {
$remind->check(-1, CREATE, $_POST);
if ($newID = $remind->add($_POST)) {
Event::log($newID, "reminder", 4, "tools", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"]));
if ($_SESSION['glpibackcreated']) {
Html::redirect($remind->getFormURL() . "?id=" . $newID);
}
}
Html::back();
} else {
if (isset($_POST["purge"])) {
$remind->check($_POST["id"], PURGE);
$remind->delete($_POST, 1);
Event::log($_POST["id"], "reminder", 4, "tools", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
if (!isset($_POST["from_planning_edit_ajax"])) {
$remind->redirectToList();
} else {
Html::back();
示例2: testReminder
/**
* Check delete / purge on a Reminder (no is_template, no is_deleted)
*/
public function testReminder()
{
$reminder = new Reminder();
// Create
$id[0] = $reminder->add(array('name' => "Reminder", 'entities_id' => 0, 'users_id' => $_SESSION['glpiID']));
$this->assertGreaterThan(0, $id[0], "Fail to create Reminder");
$this->assertTrue($reminder->getFromDB($id[0]), "Fail: can't read Reminder");
// Verify DB Schema have not change
$this->assertArrayNotHasKey('is_deleted', $reminder->fields, "Fail: is_deleted field");
$this->assertArrayNotHasKey('is_template', $reminder->fields, "Fail: is_template field");
// Delete (= purge)
$this->assertTrue($reminder->delete(array('id' => $id[0])), "Fail: can't delete Reminder");
$this->assertFalse($reminder->getFromDB($id[0]), "Fail: can read Reminder (deleted)");
}