| Current File : /home/bwalansa/www/wp-content.old/plugins.backup/loco-translate/src/fs/Siblings.php |
<?php
/**
* Manages a POT or PO/MO pair and its on-disk dependants
*/
class Loco_fs_Siblings {
/**
* @var Loco_fs_File
*/
private $po;
/**
* @var Loco_fs_File
*/
private $mo;
public function __construct( Loco_fs_File $file ){
$ext = $file->extension();
if( 'pot' === $ext ){
$this->po = $file;
}
else if( 'po' === $ext ){
$this->po = $file;
$this->mo = $file->cloneExtension('mo');
}
else if( 'mo' === $ext ){
$this->mo = $file;
$this->po = $file->cloneExtension('po');
}
else {
throw new InvalidArgumentException('Unexpected file extension: '.$ext);
}
}
/**
* Get all dependant files (including self) that actually exist on disk
* @return array
*/
public function expand(){
$siblings = array();
// Source and binary:
foreach( array( $this->po, $this->mo ) as $file ){
if( $file && $file->exists() ){
$siblings[] = $file;
}
}
// Revisions / backup files:
$revs = new Loco_fs_Revisions( $this->po );
foreach( $revs->getPaths() as $path ){
$siblings[] = new Loco_fs_File( $path );
}
return $siblings;
}
/**
* @return Loco_fs_File
*/
public function getSource(){
return $this->po;
}
/**
* @return Loco_fs_File
*/
public function getBinary(){
return $this->mo;
}
}