コード例 #1
0
ファイル: notes.php プロジェクト: alerque/bibledit
 public static function getInstance()
 {
     if (empty(self::$instance)) {
         self::$instance = new Ipc_Notes();
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: notesTest.php プロジェクト: alerque/bibledit
 public function testDeleteTwo()
 {
     $ipc_notes = Ipc_Notes::getInstance();
     $ipc_notes->open(123456789);
     $ipc_notes->open(123456789);
     $ipc_notes->delete();
     $data = $ipc_notes->get();
     $this->assertNull($data);
     $ipc_notes->delete();
     $data = $ipc_notes->get();
     $this->assertNull($data);
 }
コード例 #3
0
ファイル: poll.php プロジェクト: alerque/bibledit
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once "../bootstrap/bootstrap.php";
page_access_level(Filter_Roles::CONSULTANT_LEVEL);
$ipc_notes = Ipc_Notes::getInstance();
$action = $_GET['action'];
if ($action == "alive") {
    $ipc_notes->alive(true);
    $identifier = $ipc_notes->get();
    if ($identifier) {
        $ipc_notes->delete();
        $url = "note.php?id={$identifier}";
        echo $url;
    }
} else {
    if ($action == "unload") {
        $ipc_notes->alive(false);
    }
}