You appear to be a bot. Output may be restricted
Description
Return the SHA from which to list files
Usage
$string = oiksc_parse_status::get_from_sha( $previous );
Parameters
- $previous
- ( string ) optional –
Returns
string from_shaSource
File name: oik-shortcodes/classes/class-oiksc-parse-status.phpLines:
1 to 9 of 9
public function get_from_sha( $previous=null ) { if ( $previous ) { $this->reset(); $this->set_from_sha( $previous ); $this->update_status(); } $from_sha = current( explode( ' ', $this->from_sha ) ); return( $from_sha ); }View on GitHub