PhpOffice\PhpPresentation\Reader\PowerPoint97::readRecordAnimationInfoContainer PHP Метод

readRecordAnimationInfoContainer() приватный Метод

A container record that specifies the animation and sound information for a shape.
private readRecordAnimationInfoContainer ( string $stream, integer $pos )
$stream string
$pos integer
    private function readRecordAnimationInfoContainer($stream, $pos)
    {
        $arrayReturn = array('length' => 0);
        $data = $this->loadRecordHeader($stream, $pos);
        if ($data['recVer'] == 0xf && $data['recInstance'] == 0x0 && $data['recType'] == self::RT_ANIMATIONINFO) {
            // Record Header
            $arrayReturn['length'] += 8;
            // animationAtom
            // animationSound
            throw new \Exception('Feature not implemented (l.' . __LINE__ . ')');
        }
        return $arrayReturn;
    }
PowerPoint97