-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check file types before saving #2766
- Loading branch information
Josh Pollock
committed
Oct 25, 2018
1 parent
757fbce
commit 4ab7fba
Showing
9 changed files
with
436 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\cf2; | ||
|
||
|
||
class Exception extends \Exception | ||
{ | ||
/** | ||
* @param array $data | ||
* @return \WP_Error | ||
*/ | ||
public function toWpError(array $data = []) | ||
{ | ||
return new \WP_Error($this->getCode(), $this->getMessage(), $data); | ||
} | ||
|
||
/** | ||
* @param array $data | ||
* @param array $headers | ||
* @return \WP_REST_Response | ||
*/ | ||
public function toResponse(array $data = [], array $headers = []) | ||
{ | ||
$data = array_merge($data, ['message' => $this->getMessage()]); | ||
return new \WP_REST_Response($data, absint($this->getCode() ? $this->getCode() : 500), $headers); | ||
} | ||
|
||
/** | ||
* Convert any Exception to this type of Exception | ||
* | ||
* @param \Exception $exception | ||
* @return Exception | ||
*/ | ||
public static function formOtherException(\Exception $exception) | ||
{ | ||
return new static( | ||
$exception->getMessage(), | ||
$exception->getCode(), | ||
$exception | ||
); | ||
} | ||
|
||
/** | ||
* Convert a WP_Error object to an Exception | ||
* @param \WP_Error $error | ||
* @return Exception | ||
*/ | ||
public static function fromWpError(\WP_Error $error) | ||
{ | ||
return new static( | ||
$error->get_error_message(), | ||
$error->get_error_code() | ||
); | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\cf2\Fields\Handlers; | ||
|
||
|
||
class FileFieldHandler | ||
{ | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\cf2\Fields\Handlers; | ||
|
||
|
||
interface FileHandlerContract | ||
{ | ||
|
||
|
||
|
||
} |
This file contains 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
This file contains 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
Oops, something went wrong.