@@ -14,10 +14,12 @@ function is_assoc($array) {
14
14
}
15
15
16
16
if (! function_exists ('exc ' )) {
17
- function exc ($ message = '' )
17
+ function exc ($ message = '' , $ debug = false )
18
18
{
19
- if (is_array ($ message )) $ message = json_encode ($ message );
20
- throw new \Andiwijaya \AppCore \Exceptions \KnownException ($ message );
19
+ $ text = env ('APP_DEBUG ' ) && $ debug != false ? $ debug : $ message ;
20
+ if (is_array ($ text )) $ text = json_encode ($ text );
21
+
22
+ throw new \Andiwijaya \AppCore \Exceptions \KnownException (($ debug != false ? $ message . ' ' : '' ) . $ text );
21
23
22
24
}
23
25
}
@@ -823,39 +825,6 @@ function ceiling($number, $significance = 1)
823
825
}
824
826
}
825
827
826
- if (!function_exists ('rand_image ' )){
827
-
828
- function rand_image ($ count = 1 ){
829
-
830
- $ image_urls = [
831
- 'https://files.vlad.studio/sequoia/joy/sketchy_unfocused/thumbs/1024x1024.jpg ' ,
832
- 'https://files.vlad.studio/sequoia/joy/i_feel_good/thumbs/1024x1024.jpg ' ,
833
- 'https://files.vlad.studio/sequoia/joy/man_with_very_long_hand/thumbs/1024x1024.jpg ' ,
834
- 'https://files.vlad.studio/sequoia/joy/bookworm/thumbs/1024x1024.jpg ' ,
835
- 'https://files.vlad.studio/sequoia/joy/perfect_boobs/thumbs/1024x1024.jpg ' ,
836
- 'https://files.vlad.studio/sequoia/joy/sleeping_whales/thumbs/1024x1024.jpg ' ,
837
- 'https://files.vlad.studio/sequoia/joy/axolotl/thumbs/1024x1024.jpg ' ,
838
- 'https://files.vlad.studio/sequoia/joy/hug/thumbs/1024x1024.jpg ' ,
839
- 'https://files.vlad.studio/sequoia/joy/bird_bird_bird_bird_bird/thumbs/1024x1024.jpg ' ,
840
- 'https://files.vlad.studio/sequoia/joy/still/thumbs/1024x1024.jpg ' ,
841
- 'https://files.vlad.studio/sequoia/joy/blank_canvas/thumbs/1024x1024.jpg ' ,
842
- 'https://files.vlad.studio/sequoia/joy/xmas_windows/thumbs/1024x1024.jpg ' ,
843
- 'https://files.vlad.studio/sequoia/joy/early_morning/thumbs/1024x1024.jpg ' ,
844
- 'https://files.vlad.studio/sequoia/joy/coffee_station/thumbs/1024x1024.jpg ' ,
845
- 'https://files.vlad.studio/sequoia/joy/lower_antelope_2/thumbs/1024x1024.jpg ' ,
846
- 'https://files.vlad.studio/sequoia/joy/tinyliving/thumbs/1024x1024.jpg ' ,
847
- 'https://files.vlad.studio/sequoia/joy/starry_night/thumbs/1024x1024.jpg ' ,
848
- 'https://files.vlad.studio/sequoia/joy/bat_and_her_pet/thumbs/1024x1024.jpg ' ,
849
- 'https://files.vlad.studio/sequoia/joy/cats/thumbs/1024x1024.jpg '
850
- ];
851
-
852
- if ($ count == 1 ) return $ image_urls [rand (0 , count ($ image_urls ) - 1 )];
853
- return array_splice ($ image_urls , 0 , $ count );
854
-
855
- }
856
-
857
- }
858
-
859
828
if (!function_exists ('random_dark_color ' )){
860
829
861
830
function random_dark_color () {
0 commit comments