コード例 #1
0
ファイル: Image.php プロジェクト: emijrp/Peachy
 /**
  * Construction method for the Image class
  *
  * @access public
  * @param Wiki &$wikiClass The Wiki class object
  * @param string $title The title of the image
  * @param int $pageid The ID of the image page (optional)
  * @return Image
  */
 public function __construct(Wiki &$wikiClass, $title = null, $pageid = null)
 {
     $this->wiki =& $wikiClass;
     $this->title = $title;
     if ($this->wiki->removeNamespace($title) == $title) {
         $namespaces = $this->wiki->get_namespaces();
         $this->title = $namespaces[6] . ':' . $title;
     }
     $ii = $this->imageinfo();
     if (is_array($ii)) {
         $this->title = $ii[0]['canonicaltitle'];
         $this->rawtitle = $this->wiki->removeNamespace($this->title);
         $this->localname = str_replace(array(' ', '+'), array('_', '_'), urlencode($this->rawtitle));
         $this->page =& $this->wiki->initPage($this->title, $pageid);
         $this->mime = $ii[0]['mime'];
         $this->bitdepth = $ii[0]['bitdepth'];
         $this->hash = $ii[0]['sha1'];
         $this->size = $ii[0]['size'];
         $this->width = $ii[0]['width'];
         $this->height = $ii[0]['height'];
         $this->url = $ii[0]['url'];
         $this->timestamp = $ii[0]['timestamp'];
         $this->user = $ii[0]['user'];
         if (is_array($ii[0]['metadata'])) {
             foreach ($ii[0]['metadata'] as $metadata) {
                 $this->metadata[$metadata['name']] = $metadata['value'];
             }
         } else {
             $this->exists = false;
         }
     }
 }
コード例 #2
0
ファイル: Page.php プロジェクト: emijrp/Peachy
 /**
  * Gets ID or name of the namespace
  *
  * @param bool $id Set to true to get namespace ID, set to false to get namespace name. Default true
  * @return int|string
  */
 public function get_namespace($id = true)
 {
     if ($id) {
         return $this->namespace_id;
     } else {
         $namespaces = $this->wiki->get_namespaces();
         return $namespaces[$this->namespace_id];
     }
 }