コード例 #1
0
ファイル: AIPLang_Construct.php プロジェクト: rATRIJS/AIP
	protected static function error_in_eval($title, $message) {
		S\evlr\Evaluer::make_internal_from(
			S\evlr\Evaluer::SOURCE_OUTPUT,
			$title
		);
		
		echo $message;
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}
コード例 #2
0
ファイル: AIPLang_Function_CD.php プロジェクト: rATRIJS/AIP
	public static function execute($thing) {
		$fn = new self($thing);
		$fn->cd();
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}
コード例 #3
0
ファイル: AIPLang_Function_LS.php プロジェクト: rATRIJS/AIP
	public static function execute($target, $args = '') {
		$fn = new self($target, $args);
		$fn->ls();
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}
コード例 #4
0
	public static function execute($args = '') {
		$h = new self($args);
		$h->history();
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}
コード例 #5
0
	public static function execute($target) {
		$fn = new self($target);
		$fn->show_source();
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}