Last active
December 19, 2015 01:29
-
-
Save rakotomandimby/5876735 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$verset[]= new ModelVerset($this->book, $this->chapter, $variable); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ModelVerset | |
{ | |
public function __construct ($book, $chapter, $verset) | |
{ | |
$this->book = $book; | |
$this->chapter= $chapter; | |
$this->verset = $verset; | |
$this->book_fr= $this->setBookFrFromRef(); | |
$this->book_en= $this->setBookEnFromRef(); | |
$this->text_fr= $this->setTextFrFromRef(); | |
$this->text_en= $this->setTextEnFromRef(); | |
} | |
public function setBookFrFromRef() | |
{ | |
return //; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment