示例#1
0
 /**
  * @covers \airmoi\FileMaker\FileMaker::listScripts
  */
 public function testListScripts()
 {
     $scripts = $this->fm->listScripts();
     $this->assertTrue(in_array('cleanup db', $scripts));
 }
示例#2
0
 * expressly granted in the Software License, no other copyright, patent, or
 * other intellectual property license or right is granted, either expressly or
 * by implication, by FileMaker.
 * 
 * Example PHP script to illustrate how to list scripts in a database.
 * 
 * Requirements:
 *   1. Working FileMaker Server installation
 *   2. 'FMPHP_Sample' database hosted in FileMaker Server
 *
 */
// Include FileMaker API
require_once "FileMaker.php";
// Create a new connection to FMPHP_Sample database.
// Location of FileMaker Server is assumed to be on the same machine,
//  thus we assume hostspec is api default of 'http://localhost' as specified
//  in filemaker-api.php.
// If FMSA web server is on another machine, specify 'hostspec' as follows:
//   $fm = new FileMaker('FMPHP_Sample', 'http://10.0.0.1');
$fm = new FileMaker('FMPHP_Sample');
// Call listScripts() to get array of script names.
$scripts = $fm->listScripts();
// If an error is found, return a message and exit.
if (FileMaker::isError($scripts)) {
    printf("Error %s: %s\n", $scripts->getCode(), $scripts->getMessage());
    exit;
}
// Print out script names
foreach ($scripts as $script) {
    echo "{$script}<br>";
}