##Sass Functions Cheat Sheet
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
// filter rest data on postype | |
add_filter( 'rest_prepare_postype', 'zp_add_rest_meta', 10, 3 ); | |
function zp_add_rest_meta( $response, $post_item, $request ) { | |
// $response->data['meta'][] = $data; | |
return $response; | |
} |
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
/** | |
* Function for calculating loan ammount. | |
* Sum is without fees and additional costs. | |
*/ | |
function calculate_mortage( totalammount, ownmoney, interest, years ) { | |
/** | |
* Formula M = P * ( J / (1 - (1 + J)^-N)) | |
* M = Payment monthly | |
* P = Loan ammount | |
* J = Effective intrest in decimal (x% / 100) / 12 months |