Overview

Namespaces

  • Inteve
    • FeedGenerator
      • Feeds
        • GoogleMerchant
        • PostFeed
      • Outputs
      • Responses
      • Utils

Classes

  • Inteve\FeedGenerator\Feed
  • Inteve\FeedGenerator\Feeds\GoogleMerchant\GoogleMerchantFeed
  • Inteve\FeedGenerator\Feeds\GoogleMerchant\GoogleMerchantItem
  • Inteve\FeedGenerator\Feeds\PostFeed\PostFeed
  • Inteve\FeedGenerator\Feeds\PostFeed\PostFeedItem
  • Inteve\FeedGenerator\Outputs\DirectOutput
  • Inteve\FeedGenerator\Outputs\FileOutput
  • Inteve\FeedGenerator\Outputs\MemoryOutput
  • Inteve\FeedGenerator\Responses\NetteDownloadResponse
  • Inteve\FeedGenerator\Utils\Helpers

Interfaces

  • Inteve\FeedGenerator\IFeed
  • Inteve\FeedGenerator\IFeedItem
  • Inteve\FeedGenerator\IOutput

Exceptions

  • Inteve\FeedGenerator\AssertException
  • Inteve\FeedGenerator\FeedGeneratorException
  • Inteve\FeedGenerator\FileSystemException
  • Inteve\FeedGenerator\InvalidArgumentException
  • Inteve\FeedGenerator\InvalidItemException
  • Inteve\FeedGenerator\OutputException
  • Inteve\FeedGenerator\StaticClassException
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 
<?php

    namespace Inteve\FeedGenerator\Outputs;

    use Inteve\FeedGenerator\FileSystemException;
    use Inteve\FeedGenerator\IOutput;
    use Inteve\FeedGenerator\OutputException;


    class FileOutput implements IOutput
    {
        /** @var string */
        private $file;

        /** @var resource */
        private $fp;

        /** @var bool */
        private $opened = FALSE;


        /**
         * @param  string
         */
        public function __construct($file)
        {
            $this->file = $file;
        }


        /**
         * @return void
         * @throws FileSystemException
         */
        public function open()
        {
            if (!$this->opened) {
                @mkdir(dirname($this->file), 0777, TRUE);
                $fp = @fopen($this->file, 'w');

                if ($fp === FALSE) {
                    throw new FileSystemException("File '{$this->file}' is not writable.");
                }

                $this->fp = $fp;
                $this->opened = TRUE;
            }
        }


        /**
         * @param  string
         * @return void
         * @throws OutputException
         */
        public function output($s)
        {
            if (!$this->opened) {
                throw new OutputException("File is not open, call open() method.");
            }
            fwrite($this->fp, $s);
        }


        /**
         * @return void
         */
        public function close()
        {
            if ($this->opened) {
                fclose($this->fp);
                $this->opened = FALSE;
            }
        }
    }
inteve/feed-generator v1.0.0 API documentation API documentation generated by ApiGen