MediaService::get PHP Method

get() public method

Returns a list of media that meet the criteria specified by the selector.

Note: {@code MediaService} will not return any {@link ImageAd} image files.

public get ( $serviceSelector ) : A
return A list of {@code Media} objects.
        public function get($serviceSelector)
        {
            $args = new MediaServiceGet($serviceSelector);
            $result = $this->__soapCall("get", array($args));
            return $result->rval;
        }