53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* FileMaker API for PHP
|
|
*
|
|
* @package FileMaker
|
|
*
|
|
* Copyright © 2005-2007, FileMaker, Inc. All rights reserved.
|
|
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
|
* Software License which accompanies the code. Your use of this source code
|
|
* signifies your agreement to such license terms and conditions. Except as
|
|
* 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.
|
|
*/
|
|
|
|
/**#@+
|
|
* @ignore Include parent and delegate classes.
|
|
*/
|
|
require_once dirname(__FILE__) . '/Find.php';
|
|
require_once dirname(__FILE__) . '/../Implementation/Command/FindAnyImpl.php';
|
|
/**#@-*/
|
|
|
|
/**
|
|
* Command class that finds one random record.
|
|
* Create this command with {@link FileMaker::newFindAnyCommand()}.
|
|
*
|
|
* @package FileMaker
|
|
*/
|
|
class FileMaker_Command_FindAny extends FileMaker_Command_Find
|
|
{
|
|
/**
|
|
* Implementation
|
|
*
|
|
* @var FileMaker_Command_FindAny_Implementation
|
|
* @access private
|
|
*/
|
|
var $_impl;
|
|
|
|
/**
|
|
* FindAny command constructor.
|
|
*
|
|
* @ignore
|
|
* @param FileMaker_Implementation $fm FileMaker_Implementation object the
|
|
* command was created by.
|
|
* @param string $layout Layout to find a random record from.
|
|
*/
|
|
function FileMaker_Command_FindAny($fm, $layout)
|
|
{
|
|
$this->_impl = new FileMaker_Command_FindAny_Implementation($fm, $layout);
|
|
}
|
|
|
|
}
|