Created
September 18, 2017 09:17
-
-
Save steepzero-old/a2993b1e1aa0a96663b94b584eb2d479 to your computer and use it in GitHub Desktop.
test gist
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
$days = intval($arElement["PROPERTY_TERM_VALUE"]); | |
if($days == "год") | |
$days = 365; | |
elseif($days == '10 дней') //обратная совместимость :) | |
$days = 10; | |
elseif($days == '20 дней') | |
$days = 20; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment